summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libglusterfs/src/call-stub.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/libglusterfs/src/call-stub.c b/libglusterfs/src/call-stub.c
index cdae9df251e..9b3a9c34849 100644
--- a/libglusterfs/src/call-stub.c
+++ b/libglusterfs/src/call-stub.c
@@ -1868,7 +1868,9 @@ fop_readdirp_stub (call_frame_t *frame,
stub->args.readdirp.fd = fd_ref (fd);
stub->args.readdirp.size = size;
stub->args.readdirp.off = off;
- stub->args.readdirp.dict = dict;
+ if (dict != NULL) {
+ stub->args.readdirp.dict = dict_ref (dict);
+ }
out:
return stub;
@@ -3642,6 +3644,10 @@ call_stub_destroy_wind (call_stub_t *stub)
{
if (stub->args.readdirp.fd)
fd_unref (stub->args.readdirp.fd);
+
+ if (stub->args.readdirp.dict)
+ dict_unref (stub->args.readdirp.dict);
+
break;
}