You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's a race condition and use after free bug in the Nemesis threadqueue termination code where a worker thread may access a queue node after the main thread has already freed it. Relevant lines are:
There's a race condition and use after free bug in the Nemesis threadqueue termination code where a worker thread may access a queue node after the main thread has already freed it. Relevant lines are:
Read from worker thread:
qthreads/src/threadqueues/nemesis_threadqueues.c
Line 393 in d6ce514
Write (free) by main thread:
qthreads/src/threadqueues/nemesis_threadqueues.c
Line 399 in d6ce514
This is part of #149.
The text was updated successfully, but these errors were encountered: