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

@ -1,3 +1,8 @@
Thu Aug 13 00:40:14 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
* applied small patch on numeric entities from
Christopher Blizzard <blizzard@appliedtheory.com>
Wed Aug 12 23:12:58 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
* New release 0.2, removed the old xml_* files so that it's

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;