1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

r22811: two more memory allocation checks.

rafal
(This used to be commit d66b13f6fa)
This commit is contained in:
Rafal Szczesniak 2007-05-11 21:51:53 +00:00 committed by Gerald (Jerry) Carter
parent a4e4ff9273
commit 7e14a25dc6
2 changed files with 4 additions and 1 deletions

View File

@ -74,6 +74,8 @@ struct composite_context *libnet_Lookup_send(struct libnet_context *ctx,
/* parameters */
s->hostname.name = talloc_strdup(s, io->in.hostname);
if (composite_nomem(s->hostname.name, c)) return c;
s->hostname.type = io->in.type;
s->hostname.scope = NULL;

View File

@ -296,9 +296,10 @@ struct composite_context *libnet_rpc_userinfo_send(struct dcerpc_pipe *p,
s->lookup.in.domain_handle = &s->domain_handle;
s->lookup.in.num_names = 1;
s->lookup.in.names = talloc_array(s, struct lsa_String, 1);
if (composite_nomem(s->lookup.in.names, c)) return c;
s->lookup.in.names[0].string = talloc_strdup(s, io->in.username);
if (composite_nomem(s->lookup.in.names[0].string, c)) return c;
/* send request */
lookup_req = dcerpc_samr_LookupNames_send(p, c, &s->lookup);