diff options
| author | Pranith Kumar K <pranithk@gluster.com> | 2010-08-31 12:52:34 +0000 | 
|---|---|---|
| committer | Vijay Bellur <vijay@dev.gluster.com> | 2010-08-31 11:31:23 -0700 | 
| commit | 70652df2f7780aa734119941ac54d88ae6de7ae9 (patch) | |
| tree | 96928b36d2412c211846e52d73dd2b3fb45b420f /libglusterfs/src/dict.c | |
| parent | e7cbae70c89c8813918d9deb3895cb6886cdaeeb (diff) | |
mgmt/glusterd: memory leak fixes
Signed-off-by: Pranith Kumar K <pranithk@gluster.com>
Signed-off-by: Vijay Bellur <vijay@dev.gluster.com>
BUG: 1186 ()
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1186
Diffstat (limited to 'libglusterfs/src/dict.c')
| -rw-r--r-- | libglusterfs/src/dict.c | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/libglusterfs/src/dict.c b/libglusterfs/src/dict.c index 34a0c6860ec..f2528aeebda 100644 --- a/libglusterfs/src/dict.c +++ b/libglusterfs/src/dict.c @@ -269,6 +269,8 @@ _dict_set (dict_t *this,  			"@pair->key - NULL returned by CALLOC");  		FREE (pair); +                if (key_free) +                        GF_FREE (key);  		return -1;  	}  | 
