diff options
author | Manikandan Selvaganesh <mselvaga@redhat.com> | 2015-10-12 15:03:28 +0530 |
---|---|---|
committer | Kaushal M <kaushal@redhat.com> | 2015-10-13 23:59:58 -0700 |
commit | a2976a2eb8c79cbec1009bec4c420b4874da25bc (patch) | |
tree | f1986e41b3d0ede36f52ff94d8fd77ab85378289 | |
parent | f88d0ade1c09aa1a3cee3713dc851da9552d7ff5 (diff) | |
download | glusterfs-a2976a2eb8c79cbec1009bec4c420b4874da25bc.tar.gz glusterfs-a2976a2eb8c79cbec1009bec4c420b4874da25bc.tar.xz glusterfs-a2976a2eb8c79cbec1009bec4c420b4874da25bc.zip |
cli : freeing the allocated memory
Change-Id: Ibcbad94c091a9c24fe5aff2d7e8bcd9ac88da7bf
BUG: 1248521
Signed-off-by: Manikandan Selvaganesh <mselvaga@redhat.com>
Reviewed-on: http://review.gluster.org/12337
Tested-by: NetBSD Build System <jenkins@build.gluster.org>
Reviewed-by: Vijaikumar Mallikarjuna <vmallika@redhat.com>
Reviewed-by: Kaushal M <kaushal@redhat.com>
-rw-r--r-- | cli/src/cli-rpc-ops.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/src/cli-rpc-ops.c b/cli/src/cli-rpc-ops.c index 04ad4f8ae9..a322d61d9a 100644 --- a/cli/src/cli-rpc-ops.c +++ b/cli/src/cli-rpc-ops.c @@ -2962,6 +2962,7 @@ out: GF_FREE (hl_str); GF_FREE (used_str); GF_FREE (avail_str); + GF_FREE (sl_val); return ret; } |