From 1a5c8780ae79e5ae4e6a36bfb66cd92ae7d3aa88 Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=BCnther=20Deschner?= Date: Wed, 18 Jul 2007 11:21:21 +0000 Subject: [PATCH] r23951: Fix segfault. Guenther --- source/libads/ldap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/libads/ldap.c b/source/libads/ldap.c index 0b732297362..6c9bde24b04 100644 --- a/source/libads/ldap.c +++ b/source/libads/ldap.c @@ -425,7 +425,7 @@ got_connection: return ADS_SUCCESS; } - ads->ldap.mem_ctx = talloc_new("ads LDAP connection memory"); + ads->ldap.mem_ctx = talloc_init("ads LDAP connection memory"); if (!ads->ldap.mem_ctx) { return ADS_ERROR_NT(NT_STATUS_NO_MEMORY); } -- 2.47.2