mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
Fixed bug #309338, reported by Kupriyanov Anotolij. Added a regression
* xmlschemastypes.c: Fixed bug #309338, reported by Kupriyanov Anotolij. * test/schemas/bug309338* result/schemas/bug309338*: Added a regression test for the above bug.
This commit is contained in:
parent
87b3046bc1
commit
6d30ff2c08
@ -1,3 +1,10 @@
|
||||
Wed Jul 6 13:40:22 CEST 2005 Kasimier Buchcik <libxml2-cvs@cazic.net>
|
||||
|
||||
* xmlschemastypes.c: Fixed bug #309338, reported by Kupriyanov
|
||||
Anotolij.
|
||||
* test/schemas/bug309338* result/schemas/bug309338*:
|
||||
Added a regression test for the above bug.
|
||||
|
||||
Tue Jul 5 16:03:05 CEST 2005 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* Makefile.am: first steps toward a testsuite dist
|
||||
|
1
result/schemas/bug309338_1_0
Normal file
1
result/schemas/bug309338_1_0
Normal file
@ -0,0 +1 @@
|
||||
./test/schemas/bug309338_0.xml validates
|
0
result/schemas/bug309338_1_0.err
Normal file
0
result/schemas/bug309338_1_0.err
Normal file
4
test/schemas/bug309338_0.xml
Normal file
4
test/schemas/bug309338_0.xml
Normal file
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0"?>
|
||||
<foo xmlns="urn:test:foo"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="urn:test:foo bug309338.xsd">2000.00</foo>
|
13
test/schemas/bug309338_1.xsd
Normal file
13
test/schemas/bug309338_1.xsd
Normal file
@ -0,0 +1,13 @@
|
||||
<?xml version="1.0"?>
|
||||
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
||||
xmlns:f="urn:test:foo"
|
||||
targetNamespace="urn:test:foo">
|
||||
<xsd:element name="foo" type="f:fooType"/>
|
||||
|
||||
<xsd:simpleType name="fooType">
|
||||
<xsd:restriction base="xsd:decimal">
|
||||
<xsd:minExclusive value="0"/>
|
||||
</xsd:restriction>
|
||||
</xsd:simpleType>
|
||||
|
||||
</xsd:schema>
|
@ -2194,7 +2194,8 @@ xmlSchemaValAtomicType(xmlSchemaTypePtr type, const xmlChar * value,
|
||||
* If a mixed decimal, get rid of trailing zeroes
|
||||
*/
|
||||
if (dec != -1) {
|
||||
while ((cptr > cval) && (*(cptr-1) == '0')) {
|
||||
while ((len > dec) && (cptr > cval) &&
|
||||
(*(cptr-1) == '0')) {
|
||||
cptr--;
|
||||
len--;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user