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

s3:rpcclient: use talloc_stackframe() in do_cmd()

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
Stefan Metzmacher 2013-03-22 15:07:10 +01:00 committed by Andreas Schneider
parent 34fa794699
commit d54c908ff5

View File

@ -678,7 +678,7 @@ static NTSTATUS do_cmd(struct cli_state *cli,
/* Create mem_ctx */
if (!(mem_ctx = talloc_init("do_cmd"))) {
if (!(mem_ctx = talloc_stackframe())) {
DEBUG(0, ("talloc_init() failed\n"));
return NT_STATUS_NO_MEMORY;
}
@ -745,12 +745,14 @@ static NTSTATUS do_cmd(struct cli_state *cli,
"auth type %u\n",
cmd_entry->table->name,
pipe_default_auth_type ));
talloc_free(mem_ctx);
return NT_STATUS_UNSUCCESSFUL;
}
if (!NT_STATUS_IS_OK(ntresult)) {
DEBUG(0, ("Could not initialise %s. Error was %s\n",
cmd_entry->table->name,
nt_errstr(ntresult) ));
talloc_free(mem_ctx);
return ntresult;
}
@ -765,6 +767,7 @@ static NTSTATUS do_cmd(struct cli_state *cli,
trust_password, &machine_account,
&sec_channel_type))
{
talloc_free(mem_ctx);
return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
}
@ -780,6 +783,7 @@ static NTSTATUS do_cmd(struct cli_state *cli,
if (!NT_STATUS_IS_OK(ntresult)) {
DEBUG(0, ("Could not initialise credentials for %s.\n",
cmd_entry->table->name));
talloc_free(mem_ctx);
return ntresult;
}
}
@ -803,7 +807,7 @@ static NTSTATUS do_cmd(struct cli_state *cli,
/* Cleanup */
talloc_destroy(mem_ctx);
talloc_free(mem_ctx);
return ntresult;
}