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

Applied a small patch on numeric entities parsing from Christopher Blizzard, Daniel

This commit is contained in:
Daniel Veillard
1998-08-13 04:43:19 +00:00
parent 260a68fd34
commit 845664df7c
2 changed files with 7 additions and 0 deletions

View File

@ -1901,6 +1901,7 @@ CHAR *xmlParseCharRef(xmlParserCtxtPtr ctxt, int inLine) {
val = 0;
break;
}
NEXT;
}
if (CUR != ';')
NEXT;
@ -1914,6 +1915,7 @@ CHAR *xmlParseCharRef(xmlParserCtxtPtr ctxt, int inLine) {
val = 0;
break;
}
NEXT;
}
if (CUR != ';')
NEXT;