summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-02-03 19:29:18 +0100
committerbunnei <bunneidev@gmail.com>2018-02-03 19:29:18 +0100
commitf9c9ce20050a2aad66d40d0f49bf97065b624848 (patch)
treeda3b719894c97544fd5cb8412897e41011aef055 /src
parentMerge pull request #157 from bunnei/fix-duplicate-session (diff)
downloadyuzu-f9c9ce20050a2aad66d40d0f49bf97065b624848.tar
yuzu-f9c9ce20050a2aad66d40d0f49bf97065b624848.tar.gz
yuzu-f9c9ce20050a2aad66d40d0f49bf97065b624848.tar.bz2
yuzu-f9c9ce20050a2aad66d40d0f49bf97065b624848.tar.lz
yuzu-f9c9ce20050a2aad66d40d0f49bf97065b624848.tar.xz
yuzu-f9c9ce20050a2aad66d40d0f49bf97065b624848.tar.zst
yuzu-f9c9ce20050a2aad66d40d0f49bf97065b624848.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/svc.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index 4c0276cf0..f516927cd 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -263,6 +263,7 @@ static ResultCode ArbitrateLock(Handle holding_thread_handle, VAddr mutex_addr,
SharedPtr<Thread> requesting_thread = g_handle_table.Get<Thread>(requesting_thread_handle);
ASSERT(requesting_thread);
+ ASSERT(requesting_thread == GetCurrentThread());
SharedPtr<Mutex> mutex = g_object_address_table.Get<Mutex>(mutex_addr);
if (!mutex) {