1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-02-19 09:57:23 +03:00

fixes bug #57652 reported by Morus Walter Daniel

* parser.c: fixes bug #57652 reported by Morus Walter
Daniel
This commit is contained in:
Daniel Veillard 2001-07-25 21:39:46 +00:00
parent e392497e4c
commit 2454ab9e00
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Thu Jul 26 11:38:37 EDT 2001 <Daniel.Veillard@imag.fr>
* parser.c: fixes bug #57652 reported by Morus Walter
Thu Jul 26 10:24:34 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* nanohttp.c: John Kroll provided a small fix to xmlNanoHTTPSave

View File

@ -4898,7 +4898,7 @@ xmlParseExternalSubset(xmlParserCtxtPtr ctxt, const xmlChar *ExternalID,
ctxt->external = 1;
while (((RAW == '<') && (NXT(1) == '?')) ||
((RAW == '<') && (NXT(1) == '!')) ||
IS_BLANK(CUR)) {
(RAW == '%') || IS_BLANK(CUR)) {
const xmlChar *check = CUR_PTR;
int cons = ctxt->input->consumed;
int tok = ctxt->token;