mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 19:24:04 +00:00
[LIBXML2] Update to version 2.9.9. CORE-15854
This commit is contained in:
parent
743951eccf
commit
1fe58c4058
22 changed files with 291 additions and 461 deletions
11
sdk/lib/3rdparty/libxml2/xmlschemas.c
vendored
11
sdk/lib/3rdparty/libxml2/xmlschemas.c
vendored
|
@ -27653,6 +27653,17 @@ xmlSchemaClearValidCtxt(xmlSchemaValidCtxtPtr vctxt)
|
|||
vctxt->nbIdcNodes = 0;
|
||||
vctxt->sizeIdcNodes = 0;
|
||||
}
|
||||
|
||||
if (vctxt->idcKeys != NULL) {
|
||||
int i;
|
||||
for (i = 0; i < vctxt->nbIdcKeys; i++)
|
||||
xmlSchemaIDCFreeKey(vctxt->idcKeys[i]);
|
||||
xmlFree(vctxt->idcKeys);
|
||||
vctxt->idcKeys = NULL;
|
||||
vctxt->nbIdcKeys = 0;
|
||||
vctxt->sizeIdcKeys = 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Note that we won't delete the XPath state pool here.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue