mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
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:
parent
14d465de48
commit
77fbc3ea90
@ -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
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user