From f31a57321fc0a2390bb0d6030053c49787e5e587 Mon Sep 17 00:00:00 2001 From: Pavel Reichl Date: Mon, 24 Aug 2015 07:05:00 -0400 Subject: LDAP: end on ENOMEM MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Pavel Březina --- src/providers/ldap/ldap_id_cleanup.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/providers/ldap/ldap_id_cleanup.c b/src/providers/ldap/ldap_id_cleanup.c index 0a2b23297..0cbcf0479 100644 --- a/src/providers/ldap/ldap_id_cleanup.c +++ b/src/providers/ldap/ldap_id_cleanup.c @@ -466,6 +466,7 @@ get_group_dn_with_filter_sanitized_name(TALLOC_CTX *mem_ctx, tmp_ctx = talloc_new(NULL); if (tmp_ctx == NULL) { ret = ENOMEM; + goto done; } /* sanitize group name */ -- cgit