From 040e0e4d5f6fd0919cfd71850f696c41d4663244 Mon Sep 17 00:00:00 2001 From: "Kaleb S. KEITHLEY" Date: Mon, 14 Aug 2017 16:18:42 -0400 Subject: api: memory leak in glfs_h_acl_get(), missing dict unref master review https://review.gluster.org/17092 circa April 2017 Fix already exists in release-3.12 and release-3.11 branches Hat tip to Shyam (srangana[at]redhat.com) who found the existing fix after sitting and debugging it with me for several hours. Reported-by: Kinglong Mee Change-Id: Ic7169fd05aff7bf46108e8ac7b1f29688a7f2358 BUG: 1481394 Signed-off-by: Kaleb S. KEITHLEY Reviewed-on: https://review.gluster.org/18036 Smoke: Gluster Build System CentOS-regression: Gluster Build System Reviewed-by: Kinglong Mee Reviewed-by: Niels de Vos --- api/src/glfs-handleops.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'api') diff --git a/api/src/glfs-handleops.c b/api/src/glfs-handleops.c index 84dba5b82c5..e08a274be8d 100644 --- a/api/src/glfs-handleops.c +++ b/api/src/glfs-handleops.c @@ -2295,13 +2295,15 @@ pub_glfs_h_acl_get (struct glfs *fs, struct glfs_object *object, goto out; ret = dict_get_str (xattr, (char *)acl_key, &acl_s); - if (ret == -1) + if (ret) goto out; acl = acl_from_text (acl_s); out: - GF_FREE (acl_s); + if (xattr) + dict_unref (xattr); + if (IA_ISLNK (object->inode->ia_type) && new_object) glfs_h_close (new_object); -- cgit