[SCM] Samba Shared Repository - branch master updated

Günther Deschner gd at samba.org
Thu Aug 12 08:28:47 MDT 2010


The branch, master has been updated
       via  feb4322... ntlmssp: fix unitialized variable in ntlmssp_server_postauth().
      from  5130e66... pidl:Samba3/ClientNDR: implement rpccli_ stubs on top of dcerpc_ stubs

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit feb432292ee7c8a158524b8c5abbe41ca7882d4b
Author: Günther Deschner <gd at samba.org>
Date:   Thu Aug 12 16:28:10 2010 +0200

    ntlmssp: fix unitialized variable in ntlmssp_server_postauth().
    
    Guenther

-----------------------------------------------------------------------

Summary of changes:
 libcli/auth/ntlmssp_server.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/libcli/auth/ntlmssp_server.c b/libcli/auth/ntlmssp_server.c
index 9c177ee..3627c4d 100644
--- a/libcli/auth/ntlmssp_server.c
+++ b/libcli/auth/ntlmssp_server.c
@@ -393,7 +393,7 @@ static NTSTATUS ntlmssp_server_postauth(struct ntlmssp_state *ntlmssp_state,
 {
 	DATA_BLOB user_session_key = state->user_session_key;
 	DATA_BLOB lm_session_key = state->lm_session_key;
-	NTSTATUS nt_status;
+	NTSTATUS nt_status = NT_STATUS_OK;
 	DATA_BLOB session_key = data_blob(NULL, 0);
 
 	dump_data_pw("NT session key:\n", user_session_key.data, user_session_key.length);


-- 
Samba Shared Repository


More information about the samba-cvs mailing list