aboutsummaryrefslogtreecommitdiffstats
path: root/HTMLparser.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2002-11-18 15:07:25 +0000
committerDaniel Veillard <veillard@src.gnome.org>2002-11-18 15:07:25 +0000
commitbc6e1a3857f70487df00bb141d54b30bdbbaa17f (patch)
treea93df02277c8843b53f7b0c876fff0796116b249 /HTMLparser.c
parent4efd3be5ed55aa9f69c266ebb0fdcd921fc6dc68 (diff)
downloadandroid_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.c2
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;
}
}