epee: fix connections not being properly closed in some instances

Fixed by Fixed by crCr62U0
This commit is contained in:
moneromooo-monero 2019-08-19 16:37:22 +00:00
parent 459beb50d4
commit 2a41dc0453
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3
1 changed files with 1 additions and 1 deletions

View File

@ -782,7 +782,7 @@ void async_protocol_handler_config<t_connection_context>::delete_connections(siz
auto i = connections.end() - 1;
async_protocol_handler<t_connection_context> *conn = m_connects.at(*i);
del_connection(conn);
close(*i);
conn->close();
connections.erase(i);
}
catch (const std::out_of_range &e)