[SCM] Samba Shared Repository - branch v3-5-test updated

Karolin Seeger kseeger at samba.org
Tue May 25 09:23:43 MDT 2010


The branch, v3-5-test has been updated
       via  4c5a1b6... Fix bug #7448 - smbd crash when sambaLMPassword and sambaNTPassword entries missing from ldap.
      from  144b973... s3-selftest: deal with changed samba3 test names.

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-5-test


- Log -----------------------------------------------------------------
commit 4c5a1b6b17b5575ea943eaf0472453222579365a
Author: Roel van Meer <rolek at bokxing.nl>
Date:   Fri May 21 14:17:17 2010 -0700

    Fix bug #7448 - smbd crash when sambaLMPassword and sambaNTPassword entries missing from ldap.
    
    Protect SMBsesskeygen_ntv1() from a NULL pointer.

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

Summary of changes:
 source3/auth/auth_sam.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/auth/auth_sam.c b/source3/auth/auth_sam.c
index bd99b3a..3ac4cdb 100644
--- a/source3/auth/auth_sam.c
+++ b/source3/auth/auth_sam.c
@@ -78,6 +78,9 @@ static NTSTATUS sam_password_ok(const struct auth_context *auth_context,
 	}
 
 	if (client_lm_hash || client_nt_hash) {
+		if (!nt_pw) {
+			return NT_STATUS_WRONG_PASSWORD;
+		}
 		*user_sess_key = data_blob_talloc(mem_ctx, NULL, 16);
 		if (!user_sess_key->data) {
 			return NT_STATUS_NO_MEMORY;


-- 
Samba Shared Repository


More information about the samba-cvs mailing list