mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-04 21:04:57 +00:00
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:
parent
c25f0cef93
commit
7b9758517b
1 changed files with 0 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue