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

Karolin Seeger kseeger at samba.org
Fri Sep 21 01:26:05 MDT 2012


The branch, v3-6-test has been updated
       via  09c91a9 s3: Fix idmap_hash
      from  66c3247e Fix bug #9174: Empty SPNEGO packet can cause smbd to crash.

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


- Log -----------------------------------------------------------------
commit 09c91a947005f8feb377dab40fcb937390a4efcb
Author: Volker Lendecke <vl at samba.org>
Date:   Tue Sep 18 15:31:26 2012 -0700

    s3: Fix idmap_hash
    
    Calling be_init with NULL safely crashes, because we dereference NULL. We
    don't need to call it here, this is called in all workers anyway. Thanks
    to Jiri Sasek <jiri.sasek at oracle.com> for finding this.
    
    Autobuild-User(master): Volker Lendecke <vl at samba.org>
    Autobuild-Date(master): Thu Sep 20 05:03:54 CEST 2012 on sn-devel-104
    
    Fix bug #9188 - idmap_hash crashes.

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

Summary of changes:
 source3/winbindd/idmap_hash/idmap_hash.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/winbindd/idmap_hash/idmap_hash.c b/source3/winbindd/idmap_hash/idmap_hash.c
index 4743879..59bcdbb 100644
--- a/source3/winbindd/idmap_hash/idmap_hash.c
+++ b/source3/winbindd/idmap_hash/idmap_hash.c
@@ -259,7 +259,7 @@ done:
 
 static NTSTATUS nss_hash_init(struct nss_domain_entry *e )
 {
-	return be_init(NULL);
+	return NT_STATUS_OK;
 }
 
 /**********************************************************************


-- 
Samba Shared Repository


More information about the samba-cvs mailing list