Selaa lähdekoodia

fixed firstChild() in case of empty node

Nicolas Cannasse 17 vuotta sitten
vanhempi
commit
46fdbbb951
1 muutettua tiedostoa jossa 1 lisäystä ja 0 poistoa
  1. 1 0
      std/php/PhpXml__.hx

+ 1 - 0
std/php/PhpXml__.hx

@@ -310,6 +310,7 @@ class PhpXml__ {
 
 	public function firstChild() : PhpXml__ {
 		if( _children == null ) throw "bad nodetype";
+		if( _children.length == 0 ) return null;
 		return _children[0];
 	}