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

Karolin Seeger kseeger at samba.org
Fri Sep 28 01:20:09 MDT 2012


The branch, v3-5-test has been updated
       via  1b85990 Fix bug #9213 - Bad ASN.1 NegTokenInit packet can cause invalid free.
      from  265ff55 Fix bug #9016 - Connection to outbound trusted domain goes offline.

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


- Log -----------------------------------------------------------------
commit 1b85990b833fe4ef2007e82ffe26ee18f87cb464
Author: Jeremy Allison <jra at samba.org>
Date:   Tue Sep 25 16:35:09 2012 -0700

    Fix bug #9213 - Bad ASN.1 NegTokenInit packet can cause invalid free.
    
    Not the correct fix for the specific issue, but a general fix to
    make sure this can never happen again.
    
    Autobuild-User(master): Jeremy Allison <jra at samba.org>
    Autobuild-Date(master): Wed Sep 26 04:07:57 CEST 2012 on sn-devel-104
    (cherry picked from commit 83f60672e1b3069e6b1b90b376460da895e37df3)
    (cherry picked from commit d0b872ea7ca112d047b9ee2d10d1a75a2ee4aed3)

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

Summary of changes:
 source3/libsmb/clispnego.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/libsmb/clispnego.c b/source3/libsmb/clispnego.c
index 3322529..49b484b 100644
--- a/source3/libsmb/clispnego.c
+++ b/source3/libsmb/clispnego.c
@@ -136,6 +136,10 @@ bool spnego_parse_negTokenInit(DATA_BLOB blob,
 	bool ret;
 	ASN1_DATA *data;
 
+	for (i = 0; i < ASN1_MAX_OIDS; i++) {
+		OIDs[i] = NULL;
+	}
+
 	data = asn1_init(talloc_tos());
 	if (data == NULL) {
 		return false;


-- 
Samba Shared Repository


More information about the samba-cvs mailing list