C#: Synchronize adding ScriptInstances
(cherry picked from commit 8fdebb85ef
)
This commit is contained in:
parent
980d95a3ad
commit
f05e3712d6
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue