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

* xmlregexp.c: fixed bug #310264, basically it's about reentrancy of count based transition, when going though the counter must be reset to 0 * test/schemas/bug310264* result/schemas/bug310264*: added the regression test. Daniel
19 lines
461 B
XML
19 lines
461 B
XML
<xs:schema xmlns:tns="http://myns"
|
|
targetNamespace="http://myns"
|
|
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
>
|
|
|
|
<xs:element name="a" />
|
|
|
|
<xs:complexType name="c" >
|
|
<xs:sequence minOccurs="2" maxOccurs="4">
|
|
<xs:sequence minOccurs="19" maxOccurs="20">
|
|
<xs:element ref="tns:a" />
|
|
</xs:sequence>
|
|
</xs:sequence>
|
|
</xs:complexType>
|
|
|
|
<xs:element name="c" type="tns:c" />
|
|
|
|
</xs:schema>
|