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:
parent
e392497e4c
commit
2454ab9e00
@ -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
|
||||
|
2
parser.c
2
parser.c
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user