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:
@ -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
|
||||||
|
1
valid.c
1
valid.c
@ -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;
|
||||||
|
Reference in New Issue
Block a user