summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2007-02-14 20:52:23 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:17:57 -0500
commit8462f323cf86f90b1bdf14a3953c5a4bda1b9533 (patch)
tree920ea8befa3ffe06b119091d6e4e228c0678e5ea
parent60e26a9039fbe0fd632e306bf545331195fb1ce6 (diff)
downloadsamba-8462f323cf86f90b1bdf14a3953c5a4bda1b9533.tar.gz
samba-8462f323cf86f90b1bdf14a3953c5a4bda1b9533.tar.xz
samba-8462f323cf86f90b1bdf14a3953c5a4bda1b9533.zip
r21349: Fix memleak in ads_upn_suffixes().
Guenther
-rw-r--r--source/libads/ldap.c3
1 files changed, 3 insertions, 0 deletions
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);