mirror of
https://github.com/SChernykh/p2pool.git
synced 2025-01-03 09:19:24 +00:00
Fixed a new cppcheck issue
This commit is contained in:
parent
b713f4e702
commit
c203f6eb0a
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ SideChain::~SideChain()
|
|||
uv_mutex_destroy(&m_seenWalletsLock);
|
||||
uv_mutex_destroy(&m_seenBlocksLock);
|
||||
uv_rwlock_destroy(&m_curDifficultyLock);
|
||||
for (auto& it : m_blocksById) {
|
||||
for (const auto& it : m_blocksById) {
|
||||
delete it.second;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue