From a4ad2658500e83613eeb5c01a6dfb5d067803d16 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Mon, 27 Oct 2008 21:46:50 +0100 Subject: s4-libnet: fix user and group enumeration functions after lsa changes. Guenther --- source4/libnet/libnet_group.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source4/libnet/libnet_group.c') diff --git a/source4/libnet/libnet_group.c b/source4/libnet/libnet_group.c index cae6d6d272..eded378511 100644 --- a/source4/libnet/libnet_group.c +++ b/source4/libnet/libnet_group.c @@ -476,6 +476,8 @@ static void continue_lsa_domain_opened(struct composite_context *ctx) /* prepare arguments of QueryDomainInfo call */ s->query_domain.in.handle = &s->ctx->lsa.handle; s->query_domain.in.level = LSA_POLICY_INFO_DOMAIN; + s->query_domain.out.info = talloc_zero(c, union lsa_PolicyInformation *); + if (composite_nomem(s->query_domain.out.info, c)) return; /* send the request */ query_req = dcerpc_lsa_QueryInfoPolicy_send(s->ctx->lsa.pipe, c, &s->query_domain); -- cgit