mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Merge pull request #3098
935e39c7
levin_protocol_handler_async: erase from back of vector instead of front (stoffu)
This commit is contained in:
commit
baaeefdecc
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue