From c4660ea56987fbb68d53d231103cdedb609672b5 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 11 Sep 2006 15:43:31 +0000 Subject: r18385: fix crashes in the RPC-UNIXINFO test jelmer: I think there're a few ref pointer related bugs in pidl we need to discuss them the next days metze (This used to be commit 8c4241ecbbd9686d990073cec53dc1fde0fdde9b) --- source4/torture/rpc/unixinfo.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source4/torture') diff --git a/source4/torture/rpc/unixinfo.c b/source4/torture/rpc/unixinfo.c index 6d1772a4f4..070a7952f6 100644 --- a/source4/torture/rpc/unixinfo.c +++ b/source4/torture/rpc/unixinfo.c @@ -32,8 +32,10 @@ static BOOL test_uidtosid(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx) { NTSTATUS status; struct unixinfo_UidToSid r; + struct dom_sid sid; r.in.uid = 1000; + r.out.sid = &sid; status = dcerpc_unixinfo_UidToSid(p, mem_ctx, &r); if (!NT_STATUS_IS_OK(status)) { @@ -58,6 +60,8 @@ static BOOL test_getpwuid(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx) r.in.count = &num_uids; r.in.uids = uids; + r.out.count = &num_uids; + r.out.infos = talloc_array(mem_ctx, struct unixinfo_GetPWUidInfo, num_uids); result = dcerpc_unixinfo_GetPWUid(p, mem_ctx, &r); -- cgit