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:
@@ -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
|
||||||
|
2
parser.c
2
parser.c
@@ -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)) {
|
||||||
|
Reference in New Issue
Block a user