mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
parser: Fix loading of parameter entities in external DTDs
Regressed with commit 12f0bb94. Fixes #816.
This commit is contained in:
parent
4334cbb4e3
commit
5cce7af791
2
parser.c
2
parser.c
@ -11833,6 +11833,7 @@ xmlIOParseDTD(xmlSAXHandlerPtr sax, xmlParserInputBufferPtr input,
|
||||
xmlFreeParserInputBuffer(input);
|
||||
return(NULL);
|
||||
}
|
||||
xmlCtxtSetOptions(ctxt, XML_PARSE_DTDLOAD);
|
||||
|
||||
/*
|
||||
* generate a parser input from the I/O handler
|
||||
@ -11922,6 +11923,7 @@ xmlSAXParseDTD(xmlSAXHandlerPtr sax, const xmlChar *ExternalID,
|
||||
if (ctxt == NULL) {
|
||||
return(NULL);
|
||||
}
|
||||
xmlCtxtSetOptions(ctxt, XML_PARSE_DTDLOAD);
|
||||
|
||||
/*
|
||||
* Canonicalise the system ID
|
||||
|
Loading…
x
Reference in New Issue
Block a user