From: Andrew Bartlett Date: Fri, 14 Aug 2009 02:57:46 +0000 (+1000) Subject: s4:ldap_server Remove another talloc_steal (with references) X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=7a82aed71b74af8bc2a8a4381541adbb22452d20;p=mat%2Fsamba.git 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 --- diff --git a/source4/ldap_server/ldap_backend.c b/source4/ldap_server/ldap_backend.c index d479ff83b4..72366d2db3 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);