Remove unnecessary triggerReenter calls

callStoreEntityValue and storeAttributeValue call triggerReenter just
before continuing with their main loop. This call does not have any
use for the these functions as the continuity of their loop is already
achieved by the continue key word.

Only side effect these triggerReenter calls bring is that they cause a
return to the the callProcessor, only to reenter to the same point again,
wasting some time.

This commit removes these unnecessary calls.
This commit is contained in:
Berkay Eren Ürün 2025-03-04 13:04:07 +01:00
parent c25f0cef93
commit 7b9758517b

View file

@ -6165,7 +6165,6 @@ storeAttributeValue(XML_Parser parser, const ENCODING *enc, XML_Bool isCdata,
// process its possible inner entities (which are added to the
// m_openAttributeEntities during appendAttributeValue)
entity->hasMore = XML_FALSE;
triggerReenter(parser);
continue;
} // End of entity processing, "if" block skips the rest
@ -6617,7 +6616,6 @@ callStoreEntityValue(XML_Parser parser, const ENCODING *enc,
// process its possible inner entities (which are added to the
// m_openValueEntities during storeEntityValue)
entity->hasMore = XML_FALSE;
triggerReenter(parser);
continue;
} // End of entity processing, "if" block skips the rest