1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 20:25:14 +03:00

fixed bug #98879 a corner case when 0 is included in HTML documents and

* HTMLparser.c: fixed bug #98879 a corner case when 0 is
  included in HTML documents and using the push parser.
Daniel
This commit is contained in:
Daniel Veillard 2002-11-18 15:07:25 +00:00
parent 4efd3be5ed
commit bc6e1a3857
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Mon Nov 18 16:05:51 CET 2002 Daniel Veillard <daniel@veillard.com>
* HTMLparser.c: fixed bug #98879 a corner case when 0 is
included in HTML documents and using the push parser.
Mon Nov 18 00:11:24 CET 2002 ERDI Gergo <cactus@cactus.rulez.org> Mon Nov 18 00:11:24 CET 2002 ERDI Gergo <cactus@cactus.rulez.org>
* configure.in (PYTHON_SITE_PACKAGES): If --with-python is * configure.in (PYTHON_SITE_PACKAGES): If --with-python is

View File

@ -4388,7 +4388,7 @@ htmlParseTryOrFinish(htmlParserCtxtPtr ctxt, int terminate) {
} }
ctxt->token = 0; ctxt->token = 0;
ctxt->checkIndex = 0; ctxt->checkIndex = 0;
NEXT; in->cur++;
break; break;
} }
} }