Browse Source

fixed crash when creating new object with wrong number of arguments

admix 9 years ago
parent
commit
bc998c9195
1 changed files with 4 additions and 1 deletions
  1. 4 1
      core/object.cpp

+ 4 - 1
core/object.cpp

@@ -970,7 +970,10 @@ void Object::set_script_instance(ScriptInstance *p_instance) {
 
 	script_instance=p_instance;
 
-	script=p_instance->get_script().get_ref_ptr();
+	if (p_instance)
+		script=p_instance->get_script().get_ref_ptr();
+	else
+		script=RefPtr();
 }
 
 RefPtr Object::get_script() const {