mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-11 03:48:28 +01:00
fixed race condition
This commit is contained in:
parent
a7421739bc
commit
22773bd678
1 changed files with 4 additions and 2 deletions
|
@ -300,13 +300,15 @@ namespace tunnel
|
||||||
{
|
{
|
||||||
if (pool)
|
if (pool)
|
||||||
{
|
{
|
||||||
|
{
|
||||||
|
std::unique_lock<std::mutex> l(m_PoolsMutex);
|
||||||
|
m_Pools.erase (pool->GetIdentHash ());
|
||||||
|
}
|
||||||
{
|
{
|
||||||
std::unique_lock<std::mutex> l(m_PendingTunnelsMutex);
|
std::unique_lock<std::mutex> l(m_PendingTunnelsMutex);
|
||||||
for (auto it: m_PendingTunnels)
|
for (auto it: m_PendingTunnels)
|
||||||
if (it.second->GetTunnelPool () == pool) it.second->SetTunnelPool (nullptr);
|
if (it.second->GetTunnelPool () == pool) it.second->SetTunnelPool (nullptr);
|
||||||
}
|
}
|
||||||
std::unique_lock<std::mutex> l(m_PoolsMutex);
|
|
||||||
m_Pools.erase (pool->GetIdentHash ());
|
|
||||||
delete pool;
|
delete pool;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue