summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--xlators/performance/md-cache/src/md-cache.c2
-rw-r--r--xlators/protocol/client/src/client3_1-fops.c6
2 files changed, 8 insertions, 0 deletions
diff --git a/xlators/performance/md-cache/src/md-cache.c b/xlators/performance/md-cache/src/md-cache.c
index 5bc3c8e0e..5fa6e214b 100644
--- a/xlators/performance/md-cache/src/md-cache.c
+++ b/xlators/performance/md-cache/src/md-cache.c
@@ -1700,6 +1700,8 @@ mdc_readdir (call_frame_t *frame, xlator_t *this, fd_t *fd,
STACK_WIND (frame, mdc_readdirp_cbk,
FIRST_CHILD (this), FIRST_CHILD (this)->fops->readdirp,
fd, size, offset, xattr_req);
+
+ dict_unref (xattr_req);
return 0;
}
diff --git a/xlators/protocol/client/src/client3_1-fops.c b/xlators/protocol/client/src/client3_1-fops.c
index 89c6e287c..b460b167b 100644
--- a/xlators/protocol/client/src/client3_1-fops.c
+++ b/xlators/protocol/client/src/client3_1-fops.c
@@ -5076,6 +5076,9 @@ client3_1_readdirp (call_frame_t *frame, xlator_t *this,
goto unwind;
}
+ if (req.dict.dict_val)
+ GF_FREE (req.dict.dict_val);
+
return 0;
unwind:
gf_log (this->name, GF_LOG_WARNING, "failed to send the fop: %s", strerror (op_errno));
@@ -5091,6 +5094,9 @@ unwind:
iobuf_unref (rsp_iobuf);
}
+ if (req.dict.dict_val)
+ GF_FREE (req.dict.dict_val);
+
STACK_UNWIND_STRICT (readdirp, frame, -1, op_errno, NULL);
return 0;
}