mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-22 08:14:15 +00:00
fixed memory leak
This commit is contained in:
parent
bd13406f42
commit
9539fb8cb0
@ -514,15 +514,17 @@ namespace util
|
|||||||
|
|
||||||
void HTTPConnection::Terminate ()
|
void HTTPConnection::Terminate ()
|
||||||
{
|
{
|
||||||
if (!m_Stream || !m_Stream->IsOpen ()) return;
|
if (!m_Stream) return;
|
||||||
if (m_Stream)
|
m_Socket->close ();
|
||||||
|
if (m_Stream->IsOpen ())
|
||||||
m_Stream->Close ();
|
m_Stream->Close ();
|
||||||
|
|
||||||
m_Socket->close ();
|
|
||||||
m_Socket->get_io_service ().post ([=](void)
|
m_Socket->get_io_service ().post ([=](void)
|
||||||
{
|
{
|
||||||
i2p::stream::DeleteStream (m_Stream);
|
i2p::stream::DeleteStream (m_Stream);
|
||||||
//delete this;
|
m_Stream.reset ();
|
||||||
|
m_Stream = nullptr;
|
||||||
|
// delete this
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -604,7 +606,10 @@ namespace util
|
|||||||
void HTTPConnection::HandleWriteReply (const boost::system::error_code& ecode)
|
void HTTPConnection::HandleWriteReply (const boost::system::error_code& ecode)
|
||||||
{
|
{
|
||||||
if (ecode != boost::asio::error::operation_aborted)
|
if (ecode != boost::asio::error::operation_aborted)
|
||||||
|
{
|
||||||
|
m_Socket->close ();
|
||||||
Terminate ();
|
Terminate ();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void HTTPConnection::HandleWrite (const boost::system::error_code& ecode)
|
void HTTPConnection::HandleWrite (const boost::system::error_code& ecode)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user