1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-30 19:42:05 +03:00

Robustness-fixes for NetJoinDomain().

Guenther
(This used to be commit 2d5236cc37)
This commit is contained in:
Günther Deschner
2007-11-30 19:56:41 +01:00
committed by Volker Lendecke
parent 1484b1d174
commit ac512a5bb2

View File

@ -35,6 +35,8 @@ WERROR NetJoinDomain(const char *server_name,
WERROR werr;
unsigned int old_timeout;
ZERO_STRUCT(encrypted_password);
mem_ctx = talloc_init("NetJoinDomain");
if (!mem_ctx) {
werr = WERR_NOMEM;
@ -68,10 +70,12 @@ WERROR NetJoinDomain(const char *server_name,
goto done;
};
encode_wkssvc_join_password_buffer(mem_ctx,
password,
&cli->user_session_key,
&encrypted_password);
if (password) {
encode_wkssvc_join_password_buffer(mem_ctx,
password,
&cli->user_session_key,
&encrypted_password);
}
old_timeout = cli_set_timeout(cli, 60000);
@ -82,13 +86,16 @@ WERROR NetJoinDomain(const char *server_name,
join_flags);
if (!NT_STATUS_IS_OK(status)) {
werr = ntstatus_to_werror(status);
goto done;
}
werr = WERR_OK;
done:
cli_set_timeout(cli, old_timeout);
cli_shutdown(cli);
if (cli) {
cli_set_timeout(cli, old_timeout);
cli_shutdown(cli);
}
TALLOC_FREE(mem_ctx);
return werr;