diff options
author | Karroffel <therzog@mail.de> | 2017-07-27 14:55:07 +0200 |
---|---|---|
committer | Karroffel <therzog@mail.de> | 2017-07-27 14:56:47 +0200 |
commit | aae8accadd48c397ee9a714e6b114321c6208ab3 (patch) | |
tree | c1f75b231af632b60d189a51ac1a4dd5f3d9572d /modules/nativescript/nativescript.cpp | |
parent | 3c53b3560fe1ae6b476cf6941ca0d7c79e0093a7 (diff) | |
download | redot-engine-aae8accadd48c397ee9a714e6b114321c6208ab3.tar.gz |
[NativeScript] fix mutex double lock
In 3c53b35 a bug got introduced where a mutex gets locked twice
instead of locked and then unlocked.
This path fixes that.
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 cb38768f32..0a070988ac 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 } } |