mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2024-12-27 03:21:26 +03:00
370ba3d231
* parser.c: fixed the leak reported by Volker Roth on the list * test/ent10 result//ent10*: added a specific test for the problem Daniel
22 lines
469 B
XML
22 lines
469 B
XML
<?xml version="1.0" encoding="ISO-8859-1" ?>
|
|
<!DOCTYPE rnode [
|
|
<!ELEMENT rnode (f)>
|
|
|
|
<!ELEMENT f (#PCDATA)>
|
|
<!ATTLIST f
|
|
att1 CDATA #FIXED 'J'>
|
|
|
|
<!ENTITY f
|
|
"
|
|
<f>
|
|
hello world
|
|
</f>
|
|
"
|
|
>
|
|
]>
|
|
|
|
<rnode>
|
|
&f;
|
|
</rnode>
|
|
|