1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-29 11:41:22 +03:00

Stephan Kulow pointed out a problem when validating and using an empty

* valid.c: Stephan Kulow pointed out a problem when validating
  and using an empty entity, forgot a 'break' in a case.
Daniel
This commit is contained in:
Daniel Veillard
2001-06-17 17:20:21 +00:00
parent e3c81b50bf
commit 64b98c0ab4
2 changed files with 6 additions and 0 deletions

View File

@ -3732,6 +3732,7 @@ xmlValidateElementContent(xmlValidCtxtPtr ctxt, xmlNodePtr child,
cur = cur->children->children;
continue;
}
break;
case XML_TEXT_NODE:
if (xmlIsBlankNode(cur))
break;