projects
/
qemu-gpiodev
/
libfuse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
30a300a
)
Fix memory leak (#785)
author
Matthias Görgens
<matthias.goergens@gmail.com>
Thu, 8 Jun 2023 10:20:56 +0000
(18:20 +0800)
committer
GitHub
<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
patch
|
blob
|
history
diff --git
a/util/fusermount.c
b/util/fusermount.c
index 034383ef3781dd5be3949c7eef0c2a93ccca77dd..06f2461afff5463782643645856f567ed8ecff44 100644
(file)
--- a/
util/fusermount.c
+++ b/
util/fusermount.c
@@
-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);
}