From 683ce1bca3b6c541e565eec014fa7cc3308957d8 Mon Sep 17 00:00:00 2001 From: Raghavendra Bhat Date: Wed, 22 Feb 2012 18:27:15 +0530 Subject: glusterfsd: unref the dict and use dict_set_dynstr to avoid memleak Unref the new dict and use proper dict api (dict_set_dynstr) to save data for displaying volume status information, which otherwise leads to memory leak in the process. Change-Id: Icb9ceb1a867c5b9759211a67027d983ab9b7e1c2 BUG: 796186 Signed-off-by: Raghavendra Bhat Reviewed-on: http://review.gluster.com/2799 Tested-by: Gluster Build System Reviewed-by: Vijay Bellur --- glusterfsd/src/glusterfsd-mgmt.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'glusterfsd') diff --git a/glusterfsd/src/glusterfsd-mgmt.c b/glusterfsd/src/glusterfsd-mgmt.c index 4220baf982c..5afa558dd70 100644 --- a/glusterfsd/src/glusterfsd-mgmt.c +++ b/glusterfsd/src/glusterfsd-mgmt.c @@ -932,6 +932,8 @@ glusterfs_handle_brick_status (rpcsvc_request_t *req) out: if (dict) dict_unref (dict); + if (output) + dict_unref (output); if (brick_req.input.input_val) free (brick_req.input.input_val); if (xname) -- cgit