Browse Source

C#: Synchronize adding ScriptInstances

(cherry picked from commit 8fdebb85ef180c1e31e023c6b1a51cea683270a1)
RedworkDE 2 years ago
parent
commit
f05e3712d6
1 changed files with 4 additions and 1 deletions
  1. 4 1
      modules/mono/csharp_script.cpp

+ 4 - 1
modules/mono/csharp_script.cpp

@@ -1532,7 +1532,10 @@ CSharpInstance *CSharpInstance::create_for_managed_type(Object *p_owner, CSharpS
 		instance->_reference_owner_unsafe();
 	}
 
-	p_script->instances.insert(p_owner);
+	{
+		MutexLock lock(CSharpLanguage::get_singleton()->get_script_instances_mutex());
+		p_script->instances.insert(p_owner);
+	}
 
 	return instance;
 }