mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-05 13:14:59 +00:00
Tweak to locations in prolog
This commit is contained in:
parent
03f202d614
commit
b720028b85
1 changed files with 6 additions and 2 deletions
|
@ -1543,7 +1543,6 @@ prologProcessor(XML_Parser parser,
|
|||
declEntity = 0;
|
||||
break;
|
||||
}
|
||||
eventPtr = s;
|
||||
name = poolStoreString(&dtd.pool, encoding, s, next);
|
||||
if (!name)
|
||||
return XML_ERROR_NO_MEMORY;
|
||||
|
@ -1571,7 +1570,6 @@ prologProcessor(XML_Parser parser,
|
|||
declNotationPublicId = 0;
|
||||
declNotationName = 0;
|
||||
if (notationDeclHandler) {
|
||||
eventPtr = s;
|
||||
declNotationName = poolStoreString(&tempPool, encoding, s, next);
|
||||
if (!declNotationName)
|
||||
return XML_ERROR_NO_MEMORY;
|
||||
|
@ -1659,9 +1657,15 @@ prologProcessor(XML_Parser parser,
|
|||
case XML_ROLE_NONE:
|
||||
switch (tok) {
|
||||
case XML_TOK_PI:
|
||||
eventPtr = s;
|
||||
if (!reportProcessingInstruction(parser, encoding, s, next))
|
||||
return XML_ERROR_NO_MEMORY;
|
||||
break;
|
||||
case XML_TOK_DECL_OPEN:
|
||||
/* Do this so that locations for unparsed entity decls and notation decls
|
||||
are correct. */
|
||||
eventPtr = s;
|
||||
break;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue