diff options
author | Amar Tumballi <amarts@redhat.com> | 2012-04-13 17:29:41 +0530 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2012-04-23 14:52:57 -0700 |
commit | 29f2de478cc6a475e6ae760d9cbe7ac847e9d79c (patch) | |
tree | 621fbb33e6e3de20f7c1b59a98e181c7b50b4796 /xlators/lib/src | |
parent | 4c9e8fad23836d87b0c4327e990c789630fe5b97 (diff) |
core: coverity issues fixed
this is not a complete set of issues getting fixed. Will
address other issues in another patch.
Change-Id: Ib01c7b11b205078cc4d0b3f11610751e32d14b69
Signed-off-by: Amar Tumballi <amarts@redhat.com>
BUG: 789278
Reviewed-on: http://review.gluster.com/3145
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Jeff Darcy <jdarcy@redhat.com>
Diffstat (limited to 'xlators/lib/src')
-rw-r--r-- | xlators/lib/src/libxlator.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xlators/lib/src/libxlator.c b/xlators/lib/src/libxlator.c index fe11e35b56d..195bd523663 100644 --- a/xlators/lib/src/libxlator.c +++ b/xlators/lib/src/libxlator.c @@ -187,12 +187,13 @@ out: frame->local = local->xl_local; local->xl_specf_unwind (frame, op_ret, op_errno, dict, xdata); - return 0; } else if (need_unwind) { STACK_UNWIND_STRICT (getxattr, frame, op_ret, op_errno, dict, xdata); } + if (marker_xattr) + GF_FREE (marker_xattr); return 0; } |