Merge pull request #719

e98b26a epee: fix bug deleting more than one connection at once (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2016-03-12 21:21:32 +02:00
commit 2f8366fb21
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD

View file

@ -695,6 +695,7 @@ void async_protocol_handler_config<t_connection_context>::del_out_connections(si
{
close(*out_connections.begin());
del_connection(m_connects.at(*out_connections.begin()));
out_connections.erase(out_connections.begin());
--count;
}