fix memory leak in print_module_help method
authoralex <devkral@web.de>
Thu, 20 Dec 2018 17:32:10 +0000 (18:32 +0100)
committerNikolaus Rath <Nikolaus@rath.org>
Sat, 22 Dec 2018 12:14:56 +0000 (12:14 +0000)
lib/fuse.c

index 946ae2f22e97d71690652f293d3c5dd3eecb96e6..b5f4e2553a96589268e66c1f139f5d965f701b35 100644 (file)
@@ -4645,6 +4645,7 @@ static void print_module_help(const char *name,
                return;
        printf("\nOptions for %s module:\n", name);
        (*fac)(&a, NULL);
+       fuse_opt_free_args(&a);
 }
 
 void fuse_lib_help(struct fuse_args *args)