diff options
author | Raghavendra Bhat <raghavendrabhat@gluster.com> | 2012-02-23 22:58:44 +0530 |
---|---|---|
committer | Vijay Bellur <vijay@gluster.com> | 2012-02-27 02:17:34 -0800 |
commit | 85471322df9676cc344cc2b03627c02ed90da3cd (patch) | |
tree | 7784d17a0913e314658fd25a496c0508a093fabe /xlators/storage | |
parent | bd94f6a1cc26fbcf8811e04dab0c90257b44d89a (diff) |
glusterfsd: unref the dict and free the memory to avoid memleak
Change-Id: Ib7a1f8cbab039fefb73dc35560a035d5688b0e32
BUG: 796186
Signed-off-by: Raghavendra Bhat <raghavendrabhat@gluster.com>
Reviewed-on: http://review.gluster.com/2808
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Amar Tumballi <amarts@redhat.com>
Reviewed-by: Vijay Bellur <vijay@gluster.com>
Diffstat (limited to 'xlators/storage')
-rw-r--r-- | xlators/storage/posix/src/posix.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xlators/storage/posix/src/posix.c b/xlators/storage/posix/src/posix.c index 1b4d1a335c0..a59d2c383fd 100644 --- a/xlators/storage/posix/src/posix.c +++ b/xlators/storage/posix/src/posix.c @@ -3622,6 +3622,7 @@ posix_do_readdir (call_frame_t *frame, xlator_t *this, posix_entry_xattr_fill (this, tmp_entry->inode, fd, tmp_entry->d_name, dict, &stbuf); + dict_ref (tmp_entry->dict); } tmp_entry->d_stat = stbuf; |