Merge #9679: Access WorkQueue::running only within the cs lock
7b2d96b
Access WorkQueue::running only within the cs lock. (Matt Corallo)
This commit is contained in:
commit
a3511628d0
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ public:
|
|||
void Run()
|
||||
{
|
||||
ThreadCounter count(*this);
|
||||
while (running) {
|
||||
while (true) {
|
||||
std::unique_ptr<WorkItem> i;
|
||||
{
|
||||
std::unique_lock<std::mutex> lock(cs);
|
||||
|
|
Loading…
Reference in a new issue