mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-08-30 15:01:18 +02:00
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:
@@ -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);
|
||||
|
Reference in New Issue
Block a user