mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-19 18:09:47 +01:00
Prevent possible concurrent CBanDB::Write() calls
This commit is contained in:
parent
e3699b71c4
commit
5e20e9ec38
@ -7,6 +7,7 @@
|
||||
|
||||
#include <netaddress.h>
|
||||
#include <node/ui_interface.h>
|
||||
#include <sync.h>
|
||||
#include <util/system.h>
|
||||
#include <util/time.h>
|
||||
#include <util/translation.h>
|
||||
@ -39,6 +40,9 @@ BanMan::~BanMan()
|
||||
|
||||
void BanMan::DumpBanlist()
|
||||
{
|
||||
static Mutex dump_mutex;
|
||||
LOCK(dump_mutex);
|
||||
|
||||
SweepBanned(); // clean unused entries (if bantime has expired)
|
||||
|
||||
if (!BannedSetIsDirty()) return;
|
||||
|
Loading…
Reference in New Issue
Block a user