mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
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:
parent
ae23a4ce56
commit
39e5b35bd0
5
parser.c
5
parser.c
@ -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);
|
||||
|
@ -3,5 +3,5 @@
|
||||
<!DOCTYPE doc SYSTEM "foo">
|
||||
<doc>
|
||||
<elem attr=""/>
|
||||
<elem>&undeclared;</elem>
|
||||
<elem/>
|
||||
</doc>
|
||||
|
@ -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)
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user