diff options
author | Poornima <pgurusid@redhat.com> | 2014-02-09 22:57:56 +0000 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2014-02-12 16:36:16 -0800 |
commit | db3b2149eeb44bcb716d994224d57eccf873d2a9 (patch) | |
tree | 84f66a7085b669319556cf0bfb4a78522f275706 /xlators/cluster/stripe | |
parent | 58d7ef2f7628744db4c7bf8bf5735671e023f1d7 (diff) |
cluster/stripe: Fix the resource leaks.
Change-Id: Ieb1fe112686f4932a6272a0117c1373e736d5b4e
BUG: 789278
Signed-off-by: Poornima <pgurusid@redhat.com>
Reviewed-on: http://review.gluster.org/6951
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Anand Avati <avati@redhat.com>
Diffstat (limited to 'xlators/cluster/stripe')
-rw-r--r-- | xlators/cluster/stripe/src/stripe-helpers.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xlators/cluster/stripe/src/stripe-helpers.c b/xlators/cluster/stripe/src/stripe-helpers.c index a83abdc72c8..a047d4a2e97 100644 --- a/xlators/cluster/stripe/src/stripe-helpers.c +++ b/xlators/cluster/stripe/src/stripe-helpers.c @@ -223,6 +223,7 @@ stripe_fill_lockinfo_xattr (xlator_t *this, stripe_local_t *local, if (ret < 0) { gf_log (this->name, GF_LOG_WARNING, "dict_serialize failed (%s)", strerror (-ret)); + GF_FREE(buf); ret = -1; goto out; } @@ -280,6 +281,7 @@ stripe_fill_pathinfo_xattr (xlator_t *this, stripe_local_t *local, if (ret) { gf_log (this->name, GF_LOG_ERROR, "Cannot aggregate pathinfo list"); + GF_FREE(pathinfo_serz); goto out; } |