[SCM] Samba Shared Repository - branch master updated

Jeremy Allison jra at samba.org
Tue Sep 25 20:08:02 MDT 2012


The branch, master has been updated
       via  83f6067 Fix bug #9213 - Bad ASN.1 NegTokenInit packet can cause invalid free.
      from  3902e73 lib/util/charset: We do not use fucntions from wchar.h any more

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


- Log -----------------------------------------------------------------
commit 83f60672e1b3069e6b1b90b376460da895e37df3
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

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

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 a17efbf..9b4f8f9 100644
--- a/source3/libsmb/clispnego.c
+++ b/source3/libsmb/clispnego.c
@@ -103,6 +103,10 @@ bool spnego_parse_negTokenInit(TALLOC_CTX *ctx,
 	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