Fix crash caused by 2238.

This commit is contained in:
Fernando Sahmkow 2019-03-19 22:45:34 -04:00
parent 746167f11a
commit 8a320a6ee2
1 changed files with 2 additions and 1 deletions

View File

@ -314,8 +314,9 @@ void Thread::UpdatePriority() {
}
// Ensure that the thread is within the correct location in the waiting list.
auto old_owner = lock_owner;
lock_owner->RemoveMutexWaiter(this);
lock_owner->AddMutexWaiter(this);
old_owner->AddMutexWaiter(this);
// Recursively update the priority of the thread that depends on the priority of this one.
lock_owner->UpdatePriority();