mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-30 22:43:14 +03:00
Applied a small patch on numeric entities parsing from Christopher Blizzard, Daniel
This commit is contained in:
@ -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>
|
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
|
* New release 0.2, removed the old xml_* files so that it's
|
||||||
|
2
parser.c
2
parser.c
@ -1901,6 +1901,7 @@ CHAR *xmlParseCharRef(xmlParserCtxtPtr ctxt, int inLine) {
|
|||||||
val = 0;
|
val = 0;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
NEXT;
|
||||||
}
|
}
|
||||||
if (CUR != ';')
|
if (CUR != ';')
|
||||||
NEXT;
|
NEXT;
|
||||||
@ -1914,6 +1915,7 @@ CHAR *xmlParseCharRef(xmlParserCtxtPtr ctxt, int inLine) {
|
|||||||
val = 0;
|
val = 0;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
NEXT;
|
||||||
}
|
}
|
||||||
if (CUR != ';')
|
if (CUR != ';')
|
||||||
NEXT;
|
NEXT;
|
||||||
|
Reference in New Issue
Block a user