mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-01-21 05:51:39 +00:00
semaphore: Fix returned iterator from AddWaiter (#1614)
This commit is contained in:
parent
fb0da5dca6
commit
abd4261962
|
@ -165,8 +165,7 @@ public:
|
|||
while (it != wait_list.end() && (*it)->priority > waiter->priority) {
|
||||
++it;
|
||||
}
|
||||
wait_list.insert(it, waiter);
|
||||
return it;
|
||||
return wait_list.insert(it, waiter);
|
||||
}
|
||||
|
||||
WaitList wait_list;
|
||||
|
|
Loading…
Reference in a new issue