mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-25 02:02:11 +03:00
tried to fix #98879 again in a more solid way. Daniel
* HTMLparser.c: tried to fix #98879 again in a more solid way. Daniel
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
Tue Apr 22 15:18:01 CEST 2003 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
|
* HTMLparser.c: tried to fix #98879 again in a more solid
|
||||||
|
way.
|
||||||
|
|
||||||
Tue Apr 22 13:58:43 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com>
|
Tue Apr 22 13:58:43 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com>
|
||||||
|
|
||||||
* win32/libxml2.def.src: added more exports from the relaxng and
|
* win32/libxml2.def.src: added more exports from the relaxng and
|
||||||
|
@ -4493,6 +4493,12 @@ htmlParseTryOrFinish(htmlParserCtxtPtr ctxt, int terminate) {
|
|||||||
}
|
}
|
||||||
if (avail < 1)
|
if (avail < 1)
|
||||||
goto done;
|
goto done;
|
||||||
|
cur = in->cur[0];
|
||||||
|
if (cur == 0) {
|
||||||
|
SKIP(1);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
switch (ctxt->instate) {
|
switch (ctxt->instate) {
|
||||||
case XML_PARSER_EOF:
|
case XML_PARSER_EOF:
|
||||||
/*
|
/*
|
||||||
|
Reference in New Issue
Block a user