From 66761423474edc9736a8a6eae6feaaf958d89d0e Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 27 Sep 2010 15:03:44 -0700 Subject: s4-ildap: two more places that need talloc_reparent() these contexts can have references Autobuild-User: Andrew Tridgell Autobuild-Date: Tue Sep 28 00:04:03 UTC 2010 on sn-devel-104 --- source4/lib/ldb/ldb_ildap/ldb_ildap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/lib') diff --git a/source4/lib/ldb/ldb_ildap/ldb_ildap.c b/source4/lib/ldb/ldb_ildap/ldb_ildap.c index 044f91b3a3..98e98a8c79 100644 --- a/source4/lib/ldb/ldb_ildap/ldb_ildap.c +++ b/source4/lib/ldb/ldb_ildap/ldb_ildap.c @@ -409,7 +409,7 @@ static int ildb_request_send(struct ildb_context *ac, struct ldap_message *msg) ldb_set_errstring(ldb, "async send request failed"); return LDB_ERR_OPERATIONS_ERROR; } - ac->ireq = talloc_steal(ac, req); + ac->ireq = talloc_reparent(ac->ildb->ldap, ac, req); if (!ac->ireq->conn) { ldb_set_errstring(ldb, "connection to remote LDAP server dropped?"); -- cgit