mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
xmllint: Don't free DTD with --dropdtd
Entity references point to entities in the DTD, so only unlink the DTD and don't destroy it.
This commit is contained in:
parent
3ad7f81624
commit
3dea98eff9
@ -2371,17 +2371,13 @@ parseAndPrintFile(const char *filename, xmlParserCtxtPtr rectxt) {
|
||||
endTimer("Parsing");
|
||||
}
|
||||
|
||||
/*
|
||||
* Remove DOCTYPE nodes
|
||||
*/
|
||||
if (dropdtd) {
|
||||
xmlDtdPtr dtd;
|
||||
|
||||
dtd = xmlGetIntSubset(doc);
|
||||
if (dtd != NULL) {
|
||||
xmlUnlinkNode((xmlNodePtr)dtd);
|
||||
doc->intSubset = NULL;
|
||||
xmlFreeDtd(dtd);
|
||||
doc->intSubset = dtd;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user