fix an XML Schemas crash raised by Stefan Behnel when testing with W3C

* xmlschemas.c: fix an XML Schemas crash raised by Stefan Behnel
  when testing with W3C test suite
Daniel

svn path=/trunk/; revision=3712
This commit is contained in:
Daniel Veillard 2008-03-24 14:06:19 +00:00
parent 14d465de48
commit 77fbc3ea90
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
Mon Mar 24 15:04:54 CET 2008 Daniel Veillard <daniel@veillard.com>
* xmlschemas.c: fix an XML Schemas crash raised by Stefan Behnel
when testing with W3C test suite
Mon Mar 24 12:12:00 CET 2008 Daniel Veillard <daniel@veillard.com>
* threads.c: check some allocation with Ashwin patch

View File

@ -21808,9 +21808,9 @@ xmlSchemaValidateNotation(xmlSchemaValidCtxtPtr vctxt,
return (1);
}
if (xmlSchemaGetNotation(schema, localName, nsName) != NULL) {
if (valNeeded && (val != NULL)) {
(*val) = xmlSchemaNewNOTATIONValue(BAD_CAST localName,
BAD_CAST xmlStrdup(nsName));
if ((valNeeded) && (val != NULL)) {
(*val) = xmlSchemaNewNOTATIONValue(xmlStrdup(localName),
xmlStrdup(nsName));
if (*val == NULL)
ret = -1;
}