Tweak to locations in prolog

This commit is contained in:
James Clark 1998-06-03 09:28:55 +00:00
parent 03f202d614
commit b720028b85

View file

@ -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;
}