From 3772de37d9447614a470dbfb220fba254ae887f2 Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Tue, 17 Dec 2002 10:31:45 +0000 Subject: [PATCH] the parseStartTag bug fix wasn't complete. Daniel * parser.c: the parseStartTag bug fix wasn't complete. Daniel --- ChangeLog | 4 ++++ parser.c | 4 +--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index c40a8219..11d2dbcf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Tue Dec 17 11:29:41 CET 2002 Daniel Veillard + + * parser.c: the parseStartTag bug fix wasn't complete. + Mon Dec 16 23:00:05 CET 2002 Daniel Veillard * parser.c: Vyacheslav Pindyura managed to trigger a bug in diff --git a/parser.c b/parser.c index 16daa80e..578a73cf 100644 --- a/parser.c +++ b/parser.c @@ -6688,9 +6688,7 @@ xmlParseStartTag(xmlParserCtxtPtr ctxt) { failed: - if (CUR == 0) { - GROW - } + GROW if ((RAW == '>') || (((RAW == '/') && (NXT(1) == '>')))) break; if (!IS_BLANK(RAW)) {