r523: Fix from kawasa_r@itg.hitachi.co.jp to initialise blob structs.
authorJeremy Allison <jra@samba.org>
Thu, 6 May 2004 17:39:36 +0000 (17:39 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 15:51:27 +0000 (10:51 -0500)
Jeremy.

source/libsmb/cliconnect.c

index 06c9b5ea91a779c1421a0d30c7ce4675793542d4..e345dbe47964dc4cb6fde560fcf3a3265c3fdac7 100644 (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);