mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-22 13:27:17 +01:00
remove not needed initialization for pointer
Signed-off-by: R4SAS <r4sas@i2pmail.org>
This commit is contained in:
parent
1aa0da3382
commit
f5712c4198
|
@ -1148,7 +1148,7 @@ namespace transport
|
|||
|
||||
NTCP2Server::NTCP2Server ():
|
||||
RunnableServiceWithWork ("NTCP2"), m_TerminationTimer (GetService ()),
|
||||
m_Resolver(GetService ()), m_ProxyType(eNoProxy), m_ProxyEndpoint(nullptr)
|
||||
m_Resolver(GetService ()), m_ProxyType(eNoProxy)
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -1412,7 +1412,7 @@ namespace transport
|
|||
if ((*it)->IsEstablished () || (*it)->IsTerminationTimeoutExpired (ts))
|
||||
{
|
||||
(*it)->Terminate ();
|
||||
it = m_PendingIncomingSessions.erase (it); // etsablished of expired
|
||||
it = m_PendingIncomingSessions.erase (it); // established of expired
|
||||
}
|
||||
else if ((*it)->IsTerminated ())
|
||||
it = m_PendingIncomingSessions.erase (it); // already terminated
|
||||
|
|
Loading…
Reference in a new issue