schemas: Fix reallocation in xmlSchemaXPathProcessHistory

See #614.
This commit is contained in:
Nick Wellnhofer 2023-11-05 02:03:05 +01:00
parent 93f0179d9d
commit 9eacc03879

View File

@ -23011,7 +23011,7 @@ xmlSchemaXPathProcessHistory(xmlSchemaValidCtxtPtr vctxt,
} else if (pos >= matcher->sizeKeySeqs) {
int i = matcher->sizeKeySeqs;
matcher->sizeKeySeqs *= 2;
matcher->sizeKeySeqs = pos * 2;
matcher->keySeqs = (xmlSchemaPSVIIDCKeyPtr **)
xmlRealloc(matcher->keySeqs,
matcher->sizeKeySeqs *