summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/kernel/k_thread.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/kernel/k_thread.cpp b/src/core/hle/kernel/k_thread.cpp
index 7d3421929..8a360a839 100644
--- a/src/core/hle/kernel/k_thread.cpp
+++ b/src/core/hle/kernel/k_thread.cpp
@@ -543,7 +543,8 @@ void KThread::Unpin() {
543 ASSERT(m_parent != nullptr); 543 ASSERT(m_parent != nullptr);
544 544
545 // Resume any threads that began waiting on us while we were pinned. 545 // Resume any threads that began waiting on us while we were pinned.
546 for (auto it = m_pinned_waiter_list.begin(); it != m_pinned_waiter_list.end(); ++it) { 546 for (auto it = m_pinned_waiter_list.begin(); it != m_pinned_waiter_list.end();
547 it = m_pinned_waiter_list.erase(it)) {
547 it->EndWait(ResultSuccess); 548 it->EndWait(ResultSuccess);
548 } 549 }
549} 550}