Fix use-after-free in WorkerThreadPool

This commit is contained in:
Alvin Wong 2024-07-27 21:24:08 +08:00 committed by Rémi Verschelde
parent 88d9325065
commit c9f4436073
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -83,6 +83,10 @@ void WorkerThreadPool::_process_task(Task *p_task) {
}
#endif
#ifdef THREADS_ENABLED
bool low_priority = p_task->low_priority;
#endif
if (p_task->group) {
// Handling a group
bool do_post = false;
@ -159,7 +163,7 @@ void WorkerThreadPool::_process_task(Task *p_task) {
#ifdef THREADS_ENABLED
{
curr_thread.current_task = prev_task;
if (p_task->low_priority) {
if (low_priority) {
low_priority_threads_used--;
if (_try_promote_low_priority_task()) {