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:
Wladimir J. van der Laan 2017-02-04 11:37:14 +01:00
commit a3511628d0
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
1 changed files with 1 additions and 1 deletions

View File

@ -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);