diff options
| author | Daniel Veillard <veillard@src.gnome.org> | 2002-11-18 15:07:25 +0000 |
|---|---|---|
| committer | Daniel Veillard <veillard@src.gnome.org> | 2002-11-18 15:07:25 +0000 |
| commit | bc6e1a3857f70487df00bb141d54b30bdbbaa17f (patch) | |
| tree | a93df02277c8843b53f7b0c876fff0796116b249 /HTMLparser.c | |
| parent | 4efd3be5ed55aa9f69c266ebb0fdcd921fc6dc68 (diff) | |
| download | android_external_libxml2-bc6e1a3857f70487df00bb141d54b30bdbbaa17f.tar.gz android_external_libxml2-bc6e1a3857f70487df00bb141d54b30bdbbaa17f.tar.bz2 android_external_libxml2-bc6e1a3857f70487df00bb141d54b30bdbbaa17f.zip | |
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
Diffstat (limited to 'HTMLparser.c')
| -rw-r--r-- | HTMLparser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/HTMLparser.c b/HTMLparser.c index 34f15abc..2eaf0c20 100644 --- a/HTMLparser.c +++ b/HTMLparser.c @@ -4388,7 +4388,7 @@ htmlParseTryOrFinish(htmlParserCtxtPtr ctxt, int terminate) { } ctxt->token = 0; ctxt->checkIndex = 0; - NEXT; + in->cur++; break; } } |
