lib/xmlparse.c: Protect against closing entities out of order

This commit is contained in:
Sebastian Pipping 2024-01-30 01:34:43 +01:00
parent 183270d565
commit c4208e7fd1

View file

@ -5826,7 +5826,7 @@ processInternalEntity(XML_Parser parser, ENTITY *entity, XML_Bool betweenDecl) {
if (textEnd != next && parser->m_parsingStatus.parsing == XML_SUSPENDED) {
entity->processed = (int)(next - textStart);
parser->m_processor = internalEntityProcessor;
} else {
} else if (parser->m_openInternalEntities->entity == entity) {
#if XML_GE == 1
entityTrackingOnClose(parser, entity, __LINE__);
#endif /* XML_GE == 1 */