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

* parser.c: fix a memeory leak in internal subset parsing with a fix from Ashwin * test/errors/content1.xml result/errors/content1.xml*: add test to regressions Daniel svn path=/trunk/; revision=3680
11 lines
202 B
XML
11 lines
202 B
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE root [
|
|
<!ELEMENT root (#PCDATA)>
|
|
<!ELEMENT a ANY>
|
|
<!ELEMENT b ANY>
|
|
<!--* missing closing bracket in choice *-->
|
|
<!ELEMENT aElement (a |b * >
|
|
]>
|
|
<root>Any content</root>
|
|
|