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
diff --git a/HTMLparser.c b/HTMLparser.c
index 34f15ab..2eaf0c2 100644
--- a/HTMLparser.c
+++ b/HTMLparser.c
@@ -4388,7 +4388,7 @@
 			}
 			ctxt->token = 0;
 			ctxt->checkIndex = 0;
-			NEXT;
+			in->cur++;
 			break;
 		    }
 		}