prevent segfault

This commit is contained in:
Adam D. Ruppe 2020-10-09 12:41:35 -04:00
parent ed0ca4515f
commit a53ea697bd
1 changed files with 2 additions and 0 deletions

2
dom.d
View File

@ -1344,6 +1344,8 @@ class Document : FileResource {
///.
Element findFirst(bool delegate(Element) doesItMatch) {
if(root is null)
return null;
Element result;
bool goThroughElement(Element e) {