mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-02 02:44:15 +00:00
fixed crash on termination
This commit is contained in:
parent
51d018acc6
commit
dd9b5faa5c
@ -814,8 +814,11 @@ namespace client
|
|||||||
{
|
{
|
||||||
m_IsRunning = false;
|
m_IsRunning = false;
|
||||||
m_Acceptor.cancel ();
|
m_Acceptor.cancel ();
|
||||||
for (auto& it: m_Sessions)
|
{
|
||||||
it.second->Stop ();
|
auto sessions = m_Sessions;
|
||||||
|
for (auto& it: sessions)
|
||||||
|
it.second->Stop ();
|
||||||
|
}
|
||||||
m_Sessions.clear ();
|
m_Sessions.clear ();
|
||||||
m_Service.stop ();
|
m_Service.stop ();
|
||||||
if (m_Thread)
|
if (m_Thread)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user