[Libguestfs] [PATCH] fish: fix small memory leak in completion

Pino Toscano ptoscano at redhat.com
Wed Sep 10 11:13:06 UTC 2014


Do not leak the small memory buffer with the path.
---
 fish/destpaths.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/fish/destpaths.c b/fish/destpaths.c
index 9c97bf0..f224106 100644
--- a/fish/destpaths.c
+++ b/fish/destpaths.c
@@ -154,7 +154,8 @@ complete_dest_paths_generator (const char *text, int state)
       /* If we've got a partial path already, we need to list everything
        * in that directory, otherwise list everything in /
        */
-      char *p, *dir;
+      CLEANUP_FREE char *dir = NULL;
+      char *p;
       struct guestfs_dirent_list *dirents;
 
       p = strrchr (text, '/');
-- 
1.9.3




More information about the Libguestfs mailing list