valid: Fix build --without-regexps

This commit is contained in:
Nick Wellnhofer 2024-12-27 13:44:10 +01:00
parent 41aed0890a
commit bd2a16489f

View File

@ -314,7 +314,7 @@ vstateVPush(xmlValidCtxtPtr ctxt, xmlElementContentPtr cont,
int newSize; int newSize;
newSize = xmlGrowCapacity(ctxt->vstateMax, sizeof(tmp[0]), newSize = xmlGrowCapacity(ctxt->vstateMax, sizeof(tmp[0]),
8, MAX_RECURSE) 8, MAX_RECURSE);
return(-1); return(-1);
tmp = xmlRealloc(ctxt->vstateTab, newSize * sizeof(tmp[0])); tmp = xmlRealloc(ctxt->vstateTab, newSize * sizeof(tmp[0]));
if (tmp == NULL) { if (tmp == NULL) {
@ -5229,9 +5229,8 @@ fail:
case XML_TEXT_NODE: case XML_TEXT_NODE:
if (xmlIsBlankNode(cur)) if (xmlIsBlankNode(cur))
break; break;
/* no break on purpose */ /* falls through */
case XML_CDATA_SECTION_NODE: case XML_CDATA_SECTION_NODE:
/* no break on purpose */
case XML_ELEMENT_NODE: case XML_ELEMENT_NODE:
/* /*
* Allocate a new node and minimally fills in * Allocate a new node and minimally fills in