fixed double deletion

This commit is contained in:
orignal 2014-11-01 17:15:59 -04:00
parent 4334007688
commit a8acb8ebb4
2 changed files with 4 additions and 3 deletions

View file

@ -427,7 +427,7 @@ namespace transport
if (ecode)
{
LogPrint ("Read error: ", ecode.message ());
if (ecode != boost::asio::error::operation_aborted)
//if (ecode != boost::asio::error::operation_aborted)
Terminate ();
}
else
@ -589,7 +589,8 @@ namespace transport
if (ecode != boost::asio::error::operation_aborted)
{
LogPrint ("No activity fo ", NTCP_TERMINATION_TIMEOUT, " seconds");
Terminate ();
//Terminate ();
m_Socket.close ();// invoke Terminate () from HandleReceive
}
}