diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-08-19 16:37:22 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-08-19 22:09:55 +0000 |
commit | 2a41dc04530e4337a04cee9efc119b82c9ec325e (patch) | |
tree | 0bbe4d46152b15875ec99b4a24fdd95c74740b8a | |
parent | Merge pull request #5685 (diff) | |
download | monero-2a41dc04530e4337a04cee9efc119b82c9ec325e.tar.xz |
epee: fix connections not being properly closed in some instances
Fixed by Fixed by crCr62U0
-rw-r--r-- | contrib/epee/include/net/levin_protocol_handler_async.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/epee/include/net/levin_protocol_handler_async.h b/contrib/epee/include/net/levin_protocol_handler_async.h index 8d7ffb2c2..0a04dba4e 100644 --- a/contrib/epee/include/net/levin_protocol_handler_async.h +++ b/contrib/epee/include/net/levin_protocol_handler_async.h @@ -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) |