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

r523: Fix from kawasa_r@itg.hitachi.co.jp to initialise blob structs.

Jeremy.
This commit is contained in:
Jeremy Allison 2004-05-06 17:39:36 +00:00 committed by Gerald (Jerry) Carter
parent b27192d8e7
commit 6d0bdccaa6

View File

@ -580,9 +580,9 @@ static NTSTATUS cli_session_setup_ntlmssp(struct cli_state *cli, const char *use
NTSTATUS nt_status;
int turn = 1;
DATA_BLOB msg1;
DATA_BLOB blob;
DATA_BLOB blob = data_blob(NULL, 0);
DATA_BLOB blob_in = data_blob(NULL, 0);
DATA_BLOB blob_out;
DATA_BLOB blob_out = data_blob(NULL, 0);
cli_temp_set_signing(cli);