summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/object/worker_thread_pool.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/object/worker_thread_pool.cpp b/core/object/worker_thread_pool.cpp
index 8f56ca37de..caf4ed3835 100644
--- a/core/object/worker_thread_pool.cpp
+++ b/core/object/worker_thread_pool.cpp
@@ -427,7 +427,7 @@ void WorkerThreadPool::_lock_unlockable_mutexes() {
if ((((uintptr_t)unlockable_mutexes[i]) & 1) == 0) {
((Mutex *)unlockable_mutexes[i])->lock();
} else {
- ((BinaryMutex *)unlockable_mutexes[i])->lock();
+ ((BinaryMutex *)(unlockable_mutexes[i] & ~1))->lock();
}
}
}
@@ -441,7 +441,7 @@ void WorkerThreadPool::_unlock_unlockable_mutexes() {
if ((((uintptr_t)unlockable_mutexes[i]) & 1) == 0) {
((Mutex *)unlockable_mutexes[i])->unlock();
} else {
- ((BinaryMutex *)unlockable_mutexes[i])->unlock();
+ ((BinaryMutex *)(unlockable_mutexes[i] & ~1))->unlock();
}
}
}