the parseStartTag bug fix wasn't complete. Daniel

* parser.c: the parseStartTag bug fix wasn't complete.
Daniel
This commit is contained in:
Daniel Veillard 2002-12-17 10:31:45 +00:00
parent 67df809c3a
commit 3772de37d9
2 changed files with 5 additions and 3 deletions

View File

@ -1,3 +1,7 @@
Tue Dec 17 11:29:41 CET 2002 Daniel Veillard <daniel@veillard.com>
* parser.c: the parseStartTag bug fix wasn't complete.
Mon Dec 16 23:00:05 CET 2002 Daniel Veillard <daniel@veillard.com>
* parser.c: Vyacheslav Pindyura managed to trigger a bug in

View File

@ -6688,9 +6688,7 @@ xmlParseStartTag(xmlParserCtxtPtr ctxt) {
failed:
if (CUR == 0) {
GROW
}
GROW
if ((RAW == '>') || (((RAW == '/') && (NXT(1) == '>'))))
break;
if (!IS_BLANK(RAW)) {