diff options
author | Raul Santos <raulsntos@gmail.com> | 2024-08-17 04:04:57 +0200 |
---|---|---|
committer | Raul Santos <raulsntos@gmail.com> | 2024-08-17 04:04:57 +0200 |
commit | 5e7fda8de7ee8c11b0009a4e7f154807afa57903 (patch) | |
tree | 9de41d1687f1d8d6a79aa8d7a1ec51f35d6655ba /modules/mono | |
parent | ee363af0ed65f6ca9a906f6065d0bd9c19dcf9e4 (diff) | |
download | redot-engine-5e7fda8de7ee8c11b0009a4e7f154807afa57903.tar.gz |
C#: Destroy script before clearing owner
The C# script destructor needs to access the owner (i.e.: to disconnect signals) so we now clear it after the script has been destroyed.
Diffstat (limited to 'modules/mono')
-rw-r--r-- | modules/mono/csharp_script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/csharp_script.cpp b/modules/mono/csharp_script.cpp index 36c8a40ed9..8bd0dd14bb 100644 --- a/modules/mono/csharp_script.cpp +++ b/modules/mono/csharp_script.cpp @@ -2351,8 +2351,8 @@ CSharpInstance *CSharpScript::_create_instance(const Variant **p_args, int p_arg if (!ok) { // Important to clear this before destroying the script instance here instance->script = Ref<CSharpScript>(); - instance->owner = nullptr; p_owner->set_script_instance(nullptr); + instance->owner = nullptr; return nullptr; } |