From 7a82aed71b74af8bc2a8a4381541adbb22452d20 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 14 Aug 2009 12:57:46 +1000 Subject: [PATCH] s4:ldap_server Remove another talloc_steal (with references) This talloc_steal also conflicts with the ldb_map code, and like the previous commit, is rudundent given the talloc_steal of the whole msg above. Andrew Bartlett --- source4/ldap_server/ldap_backend.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source4/ldap_server/ldap_backend.c b/source4/ldap_server/ldap_backend.c index d479ff83b48..72366d2db37 100644 --- a/source4/ldap_server/ldap_backend.c +++ b/source4/ldap_server/ldap_backend.c @@ -427,7 +427,7 @@ static NTSTATUS ldapsrv_SearchRequest(struct ldapsrv_call *call) } ent->attributes[j].num_values = res->msgs[i]->elements[j].num_values; ent->attributes[j].values = res->msgs[i]->elements[j].values; - talloc_steal(ent->attributes, res->msgs[i]->elements[j].values); + ent->attributes = res->msgs[i]->elements[j].values; } queue_reply: ldapsrv_queue_reply(call, ent_r); -- 2.34.1