1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-29 11:41:22 +03:00

"" is a valid hexbinary string dixit xmlschema-dev update the test. added

* xmlschemastypes.c: "" is a valid hexbinary string dixit xmlschema-dev
* result/schemas/hexbinary_0_1.err test/schemas/hexbinary_1.xml:
  update the test.
* test/ns5 result//ns5*: added a test for the namespace bug fixed
  in previous commit.
* Makefile.am: added a message in the regression tests
Daniel
This commit is contained in:
Daniel Veillard
2004-08-31 08:42:17 +00:00
parent fc263f1fcf
commit f34a20e69d
11 changed files with 49 additions and 4 deletions

View File

@ -2304,7 +2304,7 @@ xmlSchemaValAtomicType(xmlSchemaTypePtr type, const xmlChar * value,
xmlChar *base;
int total, i = 0;
if ((cur == NULL) || (*cur == 0))
if (cur == NULL)
goto return1;
while (((*cur >= '0') && (*cur <= '9')) ||