Browse Source

fixed race condition

pull/102/head
orignal 10 years ago
parent
commit
22773bd678
  1. 6
      Tunnel.cpp

6
Tunnel.cpp

@ -300,13 +300,15 @@ namespace tunnel @@ -300,13 +300,15 @@ namespace tunnel
{
if (pool)
{
{
std::unique_lock<std::mutex> l(m_PoolsMutex);
m_Pools.erase (pool->GetIdentHash ());
}
{
std::unique_lock<std::mutex> l(m_PendingTunnelsMutex);
for (auto it: m_PendingTunnels)
if (it.second->GetTunnelPool () == pool) it.second->SetTunnelPool (nullptr);
}
std::unique_lock<std::mutex> l(m_PoolsMutex);
m_Pools.erase (pool->GetIdentHash ());
delete pool;
}
}

Loading…
Cancel
Save