addrman: Add missing lock in Clear() (CAddrMan)
The variable vRandom is guarded by the mutex cs.
This commit is contained in:
parent
bb9ab0fccf
commit
3ab545d7f8
1 changed files with 1 additions and 0 deletions
|
@ -455,6 +455,7 @@ public:
|
|||
|
||||
void Clear()
|
||||
{
|
||||
LOCK(cs);
|
||||
std::vector<int>().swap(vRandom);
|
||||
nKey = GetRandHash();
|
||||
for (size_t bucket = 0; bucket < ADDRMAN_NEW_BUCKET_COUNT; bucket++) {
|
||||
|
|
Loading…
Reference in a new issue