Fixed memory leak in fuse_session_new()
authorBill Zissimopoulos <billziss@navimatics.com>
Thu, 2 Jan 2020 11:08:03 +0000 (03:08 -0800)
committerNikolaus Rath <Nikolaus@rath.org>
Thu, 2 Jan 2020 11:08:03 +0000 (11:08 +0000)
ChangeLog.rst
lib/fuse_lowlevel.c

index 284015d4332aabcb70066357cafbc3c541ba16cb..a56f854a1973f086ecd84be64854535bbd39ea62 100644 (file)
@@ -5,8 +5,10 @@ libfuse 3.10.0 (2019-12-14)
   Define FUSE_USE_VERSION < 35 to get old ioctl prototype
   with int commands; define FUSE_USE_VERSION >= 35 to get
   new ioctl prototype with unsigned int commands.
+* Fixed memory leak in fuse_session_new().
 * Fixed an issue with the linker version script.
 
+
 libfuse 3.9.0 (2019-12-14)
 ==========================
 
index 36713854a2d0a917e2798eb4491c14f08edf1eb6..d8112f5854535519358309bf89c83633bd002dea 100644 (file)
@@ -2975,7 +2975,8 @@ out5:
 out4:
        fuse_opt_free_args(args);
 out3:
-       free(mo);
+       if (mo != NULL)
+               destroy_mount_opts(mo);
 out2:
        free(se);
 out1: