From 08726ffcd47eeb68eb7724e09d25322417517513 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 (This used to be commit 8462f323cf86f90b1bdf14a3953c5a4bda1b9533) --- source3/libads/ldap.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source3/libads/ldap.c b/source3/libads/ldap.c index d72cb4af26..949d167013 100644 --- a/source3/libads/ldap.c +++ b/source3/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