mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
Fix regression with PEs in external DTD
Fix a regression introduced with commit a28f7d87. In some cases, parameter entity references in external DTDs wouldn't be expanded. Fixes #306.
This commit is contained in:
parent
9f4cb84c62
commit
d85245f934
3
parser.c
3
parser.c
@ -2194,7 +2194,8 @@ xmlSkipBlankChars(xmlParserCtxtPtr ctxt) {
|
||||
* It's Okay to use CUR/NEXT here since all the blanks are on
|
||||
* the ASCII range.
|
||||
*/
|
||||
if (ctxt->instate != XML_PARSER_DTD) {
|
||||
if (((ctxt->inputNr == 1) && (ctxt->instate != XML_PARSER_DTD)) ||
|
||||
(ctxt->instate == XML_PARSER_START)) {
|
||||
const xmlChar *cur;
|
||||
/*
|
||||
* if we are in the document content, go really fast
|
||||
|
3
result/valid/pe-test.xml
Normal file
3
result/valid/pe-test.xml
Normal file
@ -0,0 +1,3 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE doc SYSTEM "dtds/pe-test.dtd">
|
||||
<doc>&ent;</doc>
|
0
result/valid/pe-test.xml.err
Normal file
0
result/valid/pe-test.xml.err
Normal file
0
result/valid/pe-test.xml.err.rdr
Normal file
0
result/valid/pe-test.xml.err.rdr
Normal file
3
test/valid/dtds/pe-test.dtd
Normal file
3
test/valid/dtds/pe-test.dtd
Normal file
@ -0,0 +1,3 @@
|
||||
<!ELEMENT doc (#PCDATA)>
|
||||
<!ENTITY % decl 'ent "value"'>
|
||||
<!ENTITY %decl;>
|
2
test/valid/pe-test.xml
Normal file
2
test/valid/pe-test.xml
Normal file
@ -0,0 +1,2 @@
|
||||
<!DOCTYPE doc SYSTEM "dtds/pe-test.dtd">
|
||||
<doc>&ent;</doc>
|
Loading…
x
Reference in New Issue
Block a user