diff options
author | Jeremy Allison <jra@samba.org> | 2001-03-01 04:01:28 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-03-01 04:01:28 +0000 |
commit | 465f5311d28c6006173bae27202a839bf62da646 (patch) | |
tree | 5510367809a39179ec28781ad2baebb85ead58ed /source | |
parent | 20dec239a922613d44e91fbce6d91361950aa5d2 (diff) | |
download | samba-465f5311d28c6006173bae27202a839bf62da646.tar.gz samba-465f5311d28c6006173bae27202a839bf62da646.tar.xz samba-465f5311d28c6006173bae27202a839bf62da646.zip |
Don't return stack structures...
Jeremy.
Diffstat (limited to 'source')
-rw-r--r-- | source/rpc_server/srv_lsa_nt.c | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/source/rpc_server/srv_lsa_nt.c b/source/rpc_server/srv_lsa_nt.c index 6f7cb0f7b35..0e6027fd8ea 100644 --- a/source/rpc_server/srv_lsa_nt.c +++ b/source/rpc_server/srv_lsa_nt.c @@ -420,16 +420,19 @@ uint32 _lsa_lookup_sids(pipes_struct *p, LSA_Q_LOOKUP_SIDS *q_u, LSA_R_LOOKUP_SI { DOM_SID2 *sid = q_u->sids.sid; int num_entries = q_u->sids.num_entries; - DOM_R_REF ref; - LSA_TRANS_NAME_ENUM names; + DOM_R_REF *ref = NULL; + LSA_TRANS_NAME_ENUM *names = NULL; uint32 mapped_count = 0; - ZERO_STRUCT(ref); - ZERO_STRUCT(names); + ref = (DOM_R_REF *)talloc_zero(p->mem_ctx, sizeof(DOM_R_REF)); + names = (LSA_TRANS_NAME_ENUM *)talloc_zero(p->mem_ctx, sizeof(LSA_TRANS_NAME_ENUM)); + + if (!ref || !names) + return NT_STATUS_NO_MEMORY; /* set up the LSA Lookup SIDs response */ - init_lsa_trans_names(p->mem_ctx, &ref, &names, num_entries, sid, &mapped_count); - init_reply_lookup_sids(r_u, &ref, &names, mapped_count); + init_lsa_trans_names(p->mem_ctx, ref, names, num_entries, sid, &mapped_count); + init_reply_lookup_sids(r_u, ref, names, mapped_count); return r_u->status; } @@ -442,16 +445,19 @@ uint32 _lsa_lookup_names(pipes_struct *p,LSA_Q_LOOKUP_NAMES *q_u, LSA_R_LOOKUP_N { UNISTR2 *names = q_u->uni_name; int num_entries = q_u->num_entries; - DOM_R_REF ref; - DOM_RID2 rids[MAX_LOOKUP_SIDS]; + DOM_R_REF *ref; + DOM_RID2 *rids; uint32 mapped_count = 0; - ZERO_STRUCT(ref); - ZERO_ARRAY(rids); + ref = (DOM_R_REF *)talloc_zero(p->mem_ctx, sizeof(DOM_R_REF)); + rids = (DOM_RID2 *)talloc_zero(p->mem_ctx, sizeof(DOM_RID2)*MAX_LOOKUP_SIDS); + + if (!ref || !rids) + return NT_STATUS_NO_MEMORY; /* set up the LSA Lookup RIDs response */ - init_lsa_rid2s(&ref, rids, num_entries, names, &mapped_count); - init_reply_lookup_names(r_u, &ref, num_entries, rids, mapped_count); + init_lsa_rid2s(ref, rids, num_entries, names, &mapped_count); + init_reply_lookup_names(r_u, ref, num_entries, rids, mapped_count); return r_u->status; } |