abstract_tcp_server2: fix use after free

This commit is contained in:
moneromooo-monero 2018-06-29 15:40:19 +01:00 committed by wowario
parent 05b49cc1bb
commit 6eaa228b16

View File

@ -652,13 +652,13 @@ PRAGMA_WARNING_DISABLE_VS(4355)
m_timer.cancel(); m_timer.cancel();
boost::system::error_code ignored_ec; boost::system::error_code ignored_ec;
socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both, ignored_ec); socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both, ignored_ec);
m_was_shutdown = true;
m_protocol_handler.release_protocol();
if (!m_host.empty()) if (!m_host.empty())
{ {
host_count(m_host, -1); host_count(m_host, -1);
m_host = ""; m_host = "";
} }
m_was_shutdown = true;
m_protocol_handler.release_protocol();
return true; return true;
} }
//--------------------------------------------------------------------------------- //---------------------------------------------------------------------------------