libxml2/test/relaxng/anyName1.rng
Seiya Nakata 5bb84b47b8 relaxng: Fix tree corruption in xmlRelaxNGParseNameClass
Don't create cycles in tree structure. This will lead to an infinite
loop or call stack overflow later.

Closes: https://gitlab.gnome.org/GNOME/libxml2/-/issues/711
2024-04-05 13:45:06 +02:00

16 lines
308 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<grammar xmlns="http://relaxng.org/ns/structure/1.0">
<start>
<element>
<choice>
<name>c</name>
<choice>
<name>a</name>
<name>b</name>
</choice>
</choice>
<empty/>
</element>
</start>
</grammar>