summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-10-06 07:11:56 +0200
committerLioncash <mathew1800@gmail.com>2018-10-06 07:13:02 +0200
commit6ddf8f34dbc5763be82061453e6a0719ea4aa247 (patch)
tree33f58620df6629bcdb848fe6659cbe5966073e91 /src/core/hle/kernel
parentMerge pull request #1440 from lioncash/array (diff)
downloadyuzu-6ddf8f34dbc5763be82061453e6a0719ea4aa247.tar
yuzu-6ddf8f34dbc5763be82061453e6a0719ea4aa247.tar.gz
yuzu-6ddf8f34dbc5763be82061453e6a0719ea4aa247.tar.bz2
yuzu-6ddf8f34dbc5763be82061453e6a0719ea4aa247.tar.lz
yuzu-6ddf8f34dbc5763be82061453e6a0719ea4aa247.tar.xz
yuzu-6ddf8f34dbc5763be82061453e6a0719ea4aa247.tar.zst
yuzu-6ddf8f34dbc5763be82061453e6a0719ea4aa247.zip
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r--src/core/hle/kernel/mutex.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/mutex.cpp b/src/core/hle/kernel/mutex.cpp
index 78d8b74bb..dd541ffcc 100644
--- a/src/core/hle/kernel/mutex.cpp
+++ b/src/core/hle/kernel/mutex.cpp
@@ -47,7 +47,7 @@ static std::pair<SharedPtr<Thread>, u32> GetHighestPriorityMutexWaitingThread(
/// Update the mutex owner field of all threads waiting on the mutex to point to the new owner.
static void TransferMutexOwnership(VAddr mutex_addr, SharedPtr<Thread> current_thread,
SharedPtr<Thread> new_owner) {
- const auto& threads = current_thread->GetMutexWaitingThreads();
+ const auto threads = current_thread->GetMutexWaitingThreads();
for (const auto& thread : threads) {
if (thread->GetMutexWaitAddress() != mutex_addr)
continue;