mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00

Don't set the "checked" flag when checking entities in default attribute values. These entities could reference other entities which weren't defined yet, so the check isn't reliable. This fixes a short-lived regression which could lead to a call stack overflow later in xmlStringGetNodeList.
7 lines
117 B
XML
7 lines
117 B
XML
<!DOCTYPE doc SYSTEM "N" [
|
|
<!ENTITY a "&b;">
|
|
<!ATTLIST x y CDATA "&a;">
|
|
<!ENTITY b "&a;">
|
|
]>
|
|
<doc attr="&a;"/>
|