parser: Don't create undeclared entity refs in substitution mode

We never want to create entity reference nodes if entity substitution
is enabled. This also applies to undeclared entities.
This commit is contained in:
Nick Wellnhofer 2024-05-02 22:06:19 +02:00
parent ae23a4ce56
commit 39e5b35bd0
4 changed files with 3 additions and 6 deletions

View File

@ -7365,10 +7365,9 @@ xmlParseReference(xmlParserCtxtPtr ctxt) {
if (ent == NULL) {
/*
* Create a reference for undeclared entities.
* TODO: Should we really create a reference if entity
* substitution is enabled?
*/
if ((ctxt->sax != NULL) &&
if ((ctxt->replaceEntities == 0) &&
(ctxt->sax != NULL) &&
(ctxt->disableSAX == 0) &&
(ctxt->sax->reference != NULL)) {
ctxt->sax->reference(ctxt->userData, name);

View File

@ -3,5 +3,5 @@
<!DOCTYPE doc SYSTEM "foo">
<doc>
<elem attr=""/>
<elem>&undeclared;</elem>
<elem/>
</doc>

View File

@ -16,7 +16,6 @@ SAX.characters(
SAX.startElementNs(elem, NULL, NULL, 0, 0, 0)
SAX.getEntity(undeclared)
SAX.warning: Entity 'undeclared' not defined
SAX.reference(undeclared)
SAX.endElementNs(elem, NULL, NULL)
SAX.characters(
, 1)

View File

@ -7,7 +7,6 @@
1 14 #text 0 1
1 1 elem 0 0
2 5 undeclared 0 0
1 15 elem 0 0
1 14 #text 0 1