From 9dddb594cdf816b16ed5eb83dbd1bc761a7b600f Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Wed, 14 Feb 2007 20:52:23 +0000 Subject: r21349: Fix memleak in ads_upn_suffixes(). Guenther --- source/libads/ldap.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/libads/ldap.c b/source/libads/ldap.c index d72cb4af263..949d167013f 100644 --- a/source/libads/ldap.c +++ b/source/libads/ldap.c @@ -2638,9 +2638,12 @@ ADS_STATUS ads_upn_suffixes(ADS_STRUCT *ads, TALLOC_CTX *mem_ctx, char **suffixe config_context = ads_pull_string(ads, mem_ctx, res, "configurationNamingContext"); if (config_context == NULL) { + ads_msgfree(ads, res); return ADS_ERROR(LDAP_NO_MEMORY); } + ads_msgfree(ads, res); + base = talloc_asprintf(mem_ctx, "cn=Partitions,%s", config_context); if (base == NULL) { return ADS_ERROR(LDAP_NO_MEMORY); -- cgit