- add patch
This commit is contained in:
parent
26f53faec0
commit
e6d7928562
17
expat-2.0.1-fix3560.patch
Normal file
17
expat-2.0.1-fix3560.patch
Normal file
@ -0,0 +1,17 @@
|
||||
|
||||
Fix regression in the CVE-2009-3560 patch.
|
||||
|
||||
http://mail.libexpat.org/pipermail/expat-discuss/2009-December/002646.html
|
||||
|
||||
--- expat-2.0.1/lib/xmlparse.c.fix3560
|
||||
+++ expat-2.0.1/lib/xmlparse.c
|
||||
@@ -3703,6 +3703,9 @@ doProlog(XML_Parser parser,
|
||||
return XML_ERROR_UNCLOSED_TOKEN;
|
||||
case XML_TOK_PARTIAL_CHAR:
|
||||
return XML_ERROR_PARTIAL_CHAR;
|
||||
+ case -XML_TOK_PROLOG_S:
|
||||
+ tok = -tok;
|
||||
+ break;
|
||||
case XML_TOK_NONE:
|
||||
#ifdef XML_DTD
|
||||
/* for internal PE NOT referenced between declarations */
|
Loading…
Reference in New Issue
Block a user