Fix memory leak (#785)
authorMatthias Görgens <matthias.goergens@gmail.com>
Thu, 8 Jun 2023 10:20:56 +0000 (18:20 +0800)
committerGitHub <noreply@github.com>
Thu, 8 Jun 2023 10:20:56 +0000 (11:20 +0100)
This is just to [keep address sanitizer happy](https://github.com/libfuse/libfuse/actions/runs/4730520764/jobs/8394347666?pr=784).  The OS would normally clean this up anyway.

Co-authored-by: Nikolaus Rath <Nikolaus@rath.org>
util/fusermount.c

index 034383ef3781dd5be3949c7eef0c2a93ccca77dd..06f2461afff5463782643645856f567ed8ecff44 100644 (file)
@@ -1468,6 +1468,7 @@ int main(int argc, char *argv[])
 
        if (!auto_unmount) {
                free(mnt);
+               free((void*) type);
                return 0;
        }
 
@@ -1520,10 +1521,12 @@ do_unmount:
                goto err_out;
 
 success_out:
+       free((void*) type);
        free(mnt);
        return 0;
 
 err_out:
+       free((void*) type);
        free(mnt);
        exit(1);
 }