diff options
author | Kaushal M <kaushal@redhat.com> | 2012-04-26 15:57:42 +0530 |
---|---|---|
committer | Vijay Bellur <vijay@gluster.com> | 2012-04-26 20:24:23 -0700 |
commit | 6db7f8f173d30313ab9f1d88e7a6398ac97fdf8d (patch) | |
tree | ed5d0b1ec09e67fbe36a3ceaabc3e5120806d47c /glusterfsd/src/glusterfsd-mgmt.c | |
parent | bb55a0c967a829a0b5eb5a4883d86540511a9d1c (diff) |
glusterfsd: Change a free() to GF_FREE()
Change-Id: I19bad33864b67e7ac79d8c5e642efa19dbc5bd80
BUG: 816163
Signed-off-by: Kaushal M <kaushal@redhat.com>
Reviewed-on: http://review.gluster.com/3231
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Amar Tumballi <amarts@redhat.com>
Diffstat (limited to 'glusterfsd/src/glusterfsd-mgmt.c')
-rw-r--r-- | glusterfsd/src/glusterfsd-mgmt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glusterfsd/src/glusterfsd-mgmt.c b/glusterfsd/src/glusterfsd-mgmt.c index 4f01871b2a2..751e5495f45 100644 --- a/glusterfsd/src/glusterfsd-mgmt.c +++ b/glusterfsd/src/glusterfsd-mgmt.c @@ -1203,7 +1203,7 @@ out: if (output) dict_unref (output); if (rsp.output.output_val) - free (rsp.output.output_val); + GF_FREE (rsp.output.output_val); gf_log (THIS->name, GF_LOG_DEBUG, "Returning %d", ret); return ret; |