diff --git a/test/xsdtest/xsdtest.xml b/test/xsdtest/xsdtest.xml index b8a6de9b..2807d267 100644 --- a/test/xsdtest/xsdtest.xml +++ b/test/xsdtest/xsdtest.xml @@ -657,6 +657,7 @@ B EEF 1 + 1 127 -128 128 @@ -665,6 +666,7 @@ B EEF 1 +1 + 1 -1 0 18446744073709551615 @@ -674,6 +676,7 @@ B EEF 1 +1 + 1 0 4294967295 4294967296 @@ -682,6 +685,7 @@ B EEF 1 +1 + 1 0 65535 65536 @@ -689,6 +693,7 @@ B EEF 1 + 1 +1 0 255 diff --git a/xmlschemastypes.c b/xmlschemastypes.c index 419c1910..5d588eea 100644 --- a/xmlschemastypes.c +++ b/xmlschemastypes.c @@ -3304,6 +3304,8 @@ xmlSchemaValAtomicType(xmlSchemaTypePtr type, const xmlChar * value, if (cur == NULL) goto return1; + if (normOnTheFly) + while IS_WSP_BLANK_CH(*cur) cur++; if (*cur == '-') { sign = 1; cur++; @@ -3312,6 +3314,8 @@ xmlSchemaValAtomicType(xmlSchemaTypePtr type, const xmlChar * value, ret = xmlSchemaParseUInt(&cur, &lo, &mi, &hi); if (ret < 0) goto return1; + if (normOnTheFly) + while IS_WSP_BLANK_CH(*cur) cur++; if (*cur != 0) goto return1; if (type->builtInType == XML_SCHEMAS_LONG) { @@ -3376,9 +3380,13 @@ xmlSchemaValAtomicType(xmlSchemaTypePtr type, const xmlChar * value, if (cur == NULL) goto return1; + if (normOnTheFly) + while IS_WSP_BLANK_CH(*cur) cur++; ret = xmlSchemaParseUInt(&cur, &lo, &mi, &hi); if (ret < 0) goto return1; + if (normOnTheFly) + while IS_WSP_BLANK_CH(*cur) cur++; if (*cur != 0) goto return1; if (type->builtInType == XML_SCHEMAS_ULONG) {