fix segfault on bad xml

This commit is contained in:
Adam D. Ruppe 2021-11-26 08:37:47 -05:00
parent 4218146d6e
commit 51747d64ba
1 changed files with 6 additions and 1 deletions

7
dom.d
View File

@ -1133,7 +1133,8 @@ class Document : FileResource, DomParent {
} while (r.type != 0 || r.element.nodeType != 1); // we look past the xml prologue and doctype; root only begins on a regular node
root = r.element;
root.parent_ = this;
if(root !is null)
root.parent_ = this;
if(!strict) // in strict mode, we'll just ignore stuff after the xml
while(r.type != 4) {
@ -8012,6 +8013,10 @@ unittest {
}
unittest {
auto document = new Document("broken"); // just ensuring it doesn't crash
}
/*
Copyright: Adam D. Ruppe, 2010 - 2021
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.