Fix early return in vstateVPush in valid.c

While looking over the code in the fallback method for `vstateVPush` in
valid.c when `LIBXML_REGEXP_ENABLED` is not defined, I noticed that
there is an ungated `return(-1)` after attempting to allocate memory.

I believe this should be inside a check, for if the malloc fails.
This commit is contained in:
Zak Ridouh 2025-02-05 14:11:04 -08:00
parent 62d4697db6
commit b466e70ae5
Failed to extract signature

View File

@ -315,7 +315,10 @@ vstateVPush(xmlValidCtxtPtr ctxt, xmlElementContentPtr cont,
newSize = xmlGrowCapacity(ctxt->vstateMax, sizeof(tmp[0]),
8, MAX_RECURSE);
return(-1);
if (newSize < 0) {
xmlVErrMemory(ctxt);
return(-1);
}
tmp = xmlRealloc(ctxt->vstateTab, newSize * sizeof(tmp[0]));
if (tmp == NULL) {
xmlVErrMemory(ctxt);
@ -6995,4 +6998,3 @@ xmlValidGetValidElements(xmlNode *prev, xmlNode *next, const xmlChar **names,
return(nb_valid_elements);
}
#endif /* LIBXML_VALID_ENABLED */