mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00

Throw an error if entity substitution was requested. Now we only downgrade to a warning if - XML_PARSE_DTDLOAD wasn't specified, and - entity aren't substituted or XML_PARSE_NO_XXE was specified. Should fix #724.
24 lines
669 B
Plaintext
24 lines
669 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.comment( Having an external DTD makes undeclared entities a warning. )
|
|
SAX.internalSubset(doc, , foo)
|
|
SAX.externalSubset(doc, , foo)
|
|
SAX.startElementNs(doc, NULL, NULL, 0, 0, 0)
|
|
SAX.characters(
|
|
, 5)
|
|
SAX.getEntity(undeclared)
|
|
SAX.error: Entity 'undeclared' not defined
|
|
SAX.startElementNs(elem, NULL, NULL, 0, 1, 0, attr='"/>
|
|
...', 0)
|
|
SAX.endElementNs(elem, NULL, NULL)
|
|
SAX.characters(
|
|
, 5)
|
|
SAX.startElementNs(elem, NULL, NULL, 0, 0, 0)
|
|
SAX.getEntity(undeclared)
|
|
SAX.error: Entity 'undeclared' not defined
|
|
SAX.endElementNs(elem, NULL, NULL)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElementNs(doc, NULL, NULL)
|
|
SAX.endDocument()
|