1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-08-07 06:43:02 +03:00

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> Mon Dec 16 23:00:05 CET 2002 Daniel Veillard <daniel@veillard.com>
* parser.c: Vyacheslav Pindyura managed to trigger a bug in * parser.c: Vyacheslav Pindyura managed to trigger a bug in

View File

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