diff options
author | krishna <krishna@gluster.com> | 2011-09-29 17:44:55 +0530 |
---|---|---|
committer | Vijay Bellur <vijay@gluster.com> | 2011-11-15 02:39:27 -0800 |
commit | 34795adcc93497d97f1cd258102f4fa4b540464b (patch) | |
tree | 41adc0e6967c379d1a77d6a367f38030e7df7b3c /xlators | |
parent | bb67817cf582678685ce1207f2a1d41fb4c3649b (diff) |
Fix memleaks in NFS
Change-Id: I522d4bad71d1e914fa88367f70f5e8c28d64fbbe
BUG: 3542
Reviewed-on: http://review.gluster.com/533
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Amar Tumballi <amar@gluster.com>
Reviewed-by: Shehjar Tikoo <shehjart@gluster.com>
Diffstat (limited to 'xlators')
-rw-r--r-- | xlators/nfs/server/src/nfs-common.c | 2 | ||||
-rw-r--r-- | xlators/nfs/server/src/nfs3.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/xlators/nfs/server/src/nfs-common.c b/xlators/nfs/server/src/nfs-common.c index 168593cdf..7c433fe68 100644 --- a/xlators/nfs/server/src/nfs-common.c +++ b/xlators/nfs/server/src/nfs-common.c @@ -322,7 +322,7 @@ nfs_parent_inode_loc_fill (inode_t *parent, inode_t *entryinode, char *entry, goto err; ret = nfs_loc_fill (loc, entryinode, parent, path); - + GF_FREE (path); err: return ret; } diff --git a/xlators/nfs/server/src/nfs3.c b/xlators/nfs/server/src/nfs3.c index f707c701a..751f00670 100644 --- a/xlators/nfs/server/src/nfs3.c +++ b/xlators/nfs/server/src/nfs3.c @@ -3743,6 +3743,7 @@ nfs3_rename_resume_src (void *carg) */ nfs_loc_copy (&cs->oploc, &cs->resolvedloc); nfs_loc_wipe (&cs->resolvedloc); + GF_FREE (cs->resolventry); ret = nfs3_fh_resolve_and_resume (cs, &cs->fh, cs->pathname, nfs3_rename_resume_dst); |