svn commit: r200495 - stable/6/contrib/expat/lib

Xin LI delphij at FreeBSD.org
Mon Dec 14 01:06:22 UTC 2009


Author: delphij
Date: Mon Dec 14 01:06:21 2009
New Revision: 200495
URL: http://svn.freebsd.org/changeset/base/200495

Log:
  MFC r200392:
  
  Apply two vendor fixes for CVE-2009-3720.
  
  Security:	CVE-2009-3720

Modified:
  stable/6/contrib/expat/lib/xmlparse.c
  stable/6/contrib/expat/lib/xmltok_impl.c
Directory Properties:
  stable/6/contrib/expat/   (props changed)

Modified: stable/6/contrib/expat/lib/xmlparse.c
==============================================================================
--- stable/6/contrib/expat/lib/xmlparse.c	Mon Dec 14 01:05:40 2009	(r200494)
+++ stable/6/contrib/expat/lib/xmlparse.c	Mon Dec 14 01:06:21 2009	(r200495)
@@ -3168,7 +3168,6 @@ doProlog(XML_Parser parser,
         return XML_ERROR_NO_ELEMENTS;
       default:
         tok = -tok;
-        next = end;
         break;
       }
     }

Modified: stable/6/contrib/expat/lib/xmltok_impl.c
==============================================================================
--- stable/6/contrib/expat/lib/xmltok_impl.c	Mon Dec 14 01:05:40 2009	(r200494)
+++ stable/6/contrib/expat/lib/xmltok_impl.c	Mon Dec 14 01:06:21 2009	(r200495)
@@ -1741,7 +1741,7 @@ PREFIX(updatePosition)(const ENCODING *e
                        const char *end,
                        POSITION *pos)
 {
-  while (ptr != end) {
+  while (ptr < end) {
     switch (BYTE_TYPE(enc, ptr)) {
 #define LEAD_CASE(n) \
     case BT_LEAD ## n: \


More information about the svn-src-stable-6 mailing list