summaryrefslogtreecommitdiffstats
path: root/source/rpc_parse
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2003-03-13 07:57:49 +0000
committerJeremy Allison <jra@samba.org>2003-03-13 07:57:49 +0000
commit40def80d43b14a853045a31b382226fe0381f38a (patch)
tree4c10415c5566d8295b50c5d18cca9f6f20536f89 /source/rpc_parse
parent0eee7a4b1ea437b5f1376fc9c7063b117f5027c6 (diff)
downloadsamba-40def80d43b14a853045a31b382226fe0381f38a.tar.gz
samba-40def80d43b14a853045a31b382226fe0381f38a.tar.xz
samba-40def80d43b14a853045a31b382226fe0381f38a.zip
Merge from HEAD. 'fixed the unmarshalling of the queryaliasmem SAMR call'
Jeremy.
Diffstat (limited to 'source/rpc_parse')
-rw-r--r--source/rpc_parse/parse_samr.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/source/rpc_parse/parse_samr.c b/source/rpc_parse/parse_samr.c
index d031d139552..222af57e5bc 100644
--- a/source/rpc_parse/parse_samr.c
+++ b/source/rpc_parse/parse_samr.c
@@ -4623,13 +4623,17 @@ BOOL samr_io_r_query_aliasmem(const char *desc, SAMR_R_QUERY_ALIASMEM * r_u,
for (i = 0; i < r_u->num_sids1; i++) {
ptr_sid[i] = 1;
- if(!prs_uint32("", ps, depth, &ptr_sid[i]))
+ if(!prs_uint32("ptr_sid", ps, depth, &ptr_sid[i]))
return False;
}
+ if (UNMARSHALLING(ps)) {
+ r_u->sid = talloc(ps->mem_ctx, r_u->num_sids1 * sizeof(DOM_SID));
+ }
+
for (i = 0; i < r_u->num_sids1; i++) {
if (ptr_sid[i] != 0) {
- if(!smb_io_dom_sid2("", &r_u->sid[i], ps, depth))
+ if(!smb_io_dom_sid2("sid", &r_u->sid[i], ps, depth))
return False;
}
}