semaphore: Fix returned iterator from AddWaiter (#1614)

This commit is contained in:
squidbus 2024-11-28 15:42:39 -08:00 committed by GitHub
parent bd3371bdfb
commit 57a3c0132d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -165,8 +165,7 @@ public:
while (it != wait_list.end() && (*it)->priority > waiter->priority) { while (it != wait_list.end() && (*it)->priority > waiter->priority) {
++it; ++it;
} }
wait_list.insert(it, waiter); return wait_list.insert(it, waiter);
return it;
} }
WaitList wait_list; WaitList wait_list;