mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01: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…
Reference in a new issue