diff options
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
| -rw-r--r-- | src/core/hle/kernel/svc.cpp | 1 |
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, | |||
| 263 | SharedPtr<Thread> requesting_thread = g_handle_table.Get<Thread>(requesting_thread_handle); | 263 | SharedPtr<Thread> requesting_thread = g_handle_table.Get<Thread>(requesting_thread_handle); |
| 264 | 264 | ||
| 265 | ASSERT(requesting_thread); | 265 | ASSERT(requesting_thread); |
| 266 | ASSERT(requesting_thread == GetCurrentThread()); | ||
| 266 | 267 | ||
| 267 | SharedPtr<Mutex> mutex = g_object_address_table.Get<Mutex>(mutex_addr); | 268 | SharedPtr<Mutex> mutex = g_object_address_table.Get<Mutex>(mutex_addr); |
| 268 | if (!mutex) { | 269 | if (!mutex) { |