diff options
| author | Thomas Herzog | 2017-07-27 14:57:42 +0200 |
|---|---|---|
| committer | GitHub | 2017-07-27 14:57:42 +0200 |
| commit | 64e26f98e24a267b3a3676671d69e9cc9e5830b9 (patch) | |
| tree | c1f75b231af632b60d189a51ac1a4dd5f3d9572d /modules/nativescript/nativescript.cpp | |
| parent | 3c53b3560fe1ae6b476cf6941ca0d7c79e0093a7 (diff) | |
| parent | aae8accadd48c397ee9a714e6b114321c6208ab3 (diff) | |
| download | godot-64e26f98e24a267b3a3676671d69e9cc9e5830b9.tar.gz godot-64e26f98e24a267b3a3676671d69e9cc9e5830b9.tar.zst godot-64e26f98e24a267b3a3676671d69e9cc9e5830b9.zip | |
Merge pull request #9911 from karroffel/nativescript-init-call
[NativeScript] fix mutex double lock
Diffstat (limited to 'modules/nativescript/nativescript.cpp')
| -rw-r--r-- | modules/nativescript/nativescript.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/nativescript/nativescript.cpp b/modules/nativescript/nativescript.cpp index cb38768f3..0a070988a 100644 --- a/modules/nativescript/nativescript.cpp +++ b/modules/nativescript/nativescript.cpp @@ -792,7 +792,7 @@ NativeScriptInstance::~NativeScriptInstance() { script->instance_owners.erase(owner); #ifndef NO_THREADS - script->owners_lock->lock(); + script->owners_lock->unlock(); #endif } } |
