From: Günther Deschner Date: Mon, 11 May 2009 16:27:40 +0000 (+0200) Subject: s3-lsa: Fix _lsa_LookupNames2() server implementation which always returned a NULL... X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0cfe59f1b580371f445b50151ceae5aef02bf0c4;p=thirdparty%2Fsamba.git s3-lsa: Fix _lsa_LookupNames2() server implementation which always returned a NULL sid_array since 3.2.0. Found by torture test. This makes it possible to search for users while adding them to groups via windows usermanager. Fixes bug #6484. Guenther --- diff --git a/source/rpc_server/srv_lsa_nt.c b/source/rpc_server/srv_lsa_nt.c index 96ee36afde4..ec7d30a0593 100644 --- a/source/rpc_server/srv_lsa_nt.c +++ b/source/rpc_server/srv_lsa_nt.c @@ -1090,6 +1090,7 @@ NTSTATUS _lsa_LookupNames2(pipes_struct *p, status = _lsa_LookupNames(p, &q); + sid_array2->count = sid_array->count; sid_array2->sids = TALLOC_ARRAY(p->mem_ctx, struct lsa_TranslatedSid2, sid_array->count); if (!sid_array2->sids) { return NT_STATUS_NO_MEMORY;