mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-03-01 16:13:23 +00:00
d3d12: Fix a potential crash in GC thread
This commit is contained in:
parent
16fa3697db
commit
fc65f181a7
@ -39,7 +39,7 @@ GarbageCollectionThread::GarbageCollectionThread()
|
||||
while (true)
|
||||
{
|
||||
std::unique_lock<std::mutex> lock(m_mutex);
|
||||
if (m_queue.empty())
|
||||
while (m_queue.empty())
|
||||
cv.wait(lock);
|
||||
m_queue.front()();
|
||||
m_queue.pop();
|
||||
|
Loading…
x
Reference in New Issue
Block a user