abstract_tcp_server2: fix use after free

pull/88/head
moneromooo-monero 6 years ago
parent 41662ebcc7
commit 2daf54deeb
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -653,13 +653,13 @@ PRAGMA_WARNING_DISABLE_VS(4355)
m_timer.cancel();
boost::system::error_code 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())
{
try { host_count(m_host, -1); } catch (...) { /* ignore */ }
m_host = "";
}
m_was_shutdown = true;
m_protocol_handler.release_protocol();
return true;
}
//---------------------------------------------------------------------------------

Loading…
Cancel
Save