mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
valid: Fix build --without-regexps
This commit is contained in:
parent
41aed0890a
commit
bd2a16489f
5
valid.c
5
valid.c
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user