1
0
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:
Daniel Veillard
2003-04-22 13:21:57 +00:00
parent 94f4884379
commit 45269b8bb9
2 changed files with 11 additions and 0 deletions

View File

@ -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

View File

@ -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:
/* /*