diff options
author | Pranith Kumar K <pranithk@gluster.com> | 2012-01-11 10:38:45 +0530 |
---|---|---|
committer | Anand Avati <avati@gluster.com> | 2012-01-11 08:39:33 -0800 |
commit | 4e40a7e48757feedc959c7982acf05c73f739a15 (patch) | |
tree | e6fd156976b087ddce4d0a3c707cb9923807ab88 /xlators/mount | |
parent | 984de558a959854ddb4042f2fb3d47508883b788 (diff) |
mount/fuse: Fix memory leaks
Change-Id: Iff10650dc8234f9d8ca0472f2e1ea9c60fbd6d4e
BUG: 773211
Signed-off-by: Pranith Kumar K <pranithk@gluster.com>
Reviewed-on: http://review.gluster.com/2630
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Jeff Darcy <jdarcy@redhat.com>
Reviewed-by: Anand Avati <avati@gluster.com>
Diffstat (limited to 'xlators/mount')
-rw-r--r-- | xlators/mount/fuse/src/fuse-bridge.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/xlators/mount/fuse/src/fuse-bridge.c b/xlators/mount/fuse/src/fuse-bridge.c index 8a0dec09b..5b3845919 100644 --- a/xlators/mount/fuse/src/fuse-bridge.c +++ b/xlators/mount/fuse/src/fuse-bridge.c @@ -3979,6 +3979,9 @@ init (xlator_t *this_xl) priv->fuse_ops = fuse_dump_ops; } + if (fsname_allocated) + GF_FREE (fsname); + GF_FREE (mnt_args); return 0; cleanup_exit: |