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

@ -1,3 +1,8 @@
Sun Jun 17 19:17:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* valid.c: Stephan Kulow pointed out a problem when validating
and using an empty entity, forgot a 'break' in a case.
Sun Jun 17 16:47:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> Sun Jun 17 16:47:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* tree.c: fixed xmlHasNsProp() accordingly to bug #55683 * tree.c: fixed xmlHasNsProp() accordingly to bug #55683

View File

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