mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-29 11:41:22 +03:00
- Fixed bug #4344 - Fixed C++ problems in headers - Released 1.8.1 Daniel
- Fixed bug #4344 - Fixed C++ problems in headers - Released 1.8.1 Daniel
This commit is contained in:
4
parser.c
4
parser.c
@ -4186,6 +4186,10 @@ xmlParseElementMixedContentDecl(xmlParserCtxtPtr ctxt) {
|
||||
if (CUR == ')') {
|
||||
NEXT;
|
||||
ret = xmlNewElementContent(NULL, XML_ELEMENT_CONTENT_PCDATA);
|
||||
if (CUR == '*') {
|
||||
ret->ocur = XML_ELEMENT_CONTENT_MULT;
|
||||
NEXT;
|
||||
}
|
||||
return(ret);
|
||||
}
|
||||
if ((CUR == '(') || (CUR == '|')) {
|
||||
|
Reference in New Issue
Block a user