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
The lines of code above actually default initialize a local std::unique_lock<std::mutex> named job_mutex instead of creating a lock on the job_mutex member.
You should look for occurences of std::unique_lock<std::mutex>( in the codebase for similar bugs.
The text was updated successfully, but these errors were encountered:
xmr-stak-amd/jpsock.cpp
Line 212 in 3358f25
xmr-stak-amd/jpsock.cpp
Line 406 in 3358f25
xmr-stak-amd/jpsock.cpp
Line 560 in 3358f25
The lines of code above actually default initialize a local
std::unique_lock<std::mutex>
namedjob_mutex
instead of creating a lock on thejob_mutex
member.You should look for occurences of
std::unique_lock<std::mutex>(
in the codebase for similar bugs.The text was updated successfully, but these errors were encountered: