From c862dc3d2018550146b02740c4f0737cd715f207 Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Wed, 10 Sep 2014 11:39:55 +0200 Subject: [PATCH] fish: fix small memory leak in completion 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 9c97bf0b2..f2241069b 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, '/');