levin_protocol_handler_async: erase from back of vector instead of front

This commit is contained in:
stoffu 2018-01-11 08:40:11 +09:00
parent 09d19c9139
commit 935e39c7f3
No known key found for this signature in database
GPG Key ID: 41DAB8343A9EC012
1 changed files with 1 additions and 1 deletions

View File

@ -752,7 +752,7 @@ void async_protocol_handler_config<t_connection_context>::del_out_connections(si
{
try
{
auto i = out_connections.begin();
auto i = out_connections.end() - 1;
async_protocol_handler<t_connection_context> *conn = m_connects.at(*i);
del_connection(conn);
close(*i);