fish: fix small memory leak in completion

Do not leak the small memory buffer with the path.
This commit is contained in:
Pino Toscano
2014-09-10 11:39:55 +02:00
parent 55f70c13e3
commit c862dc3d20

View File

@@ -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, '/');