protocol: fix use after free when dropping a connection

This commit is contained in:
moneromooo-monero 2018-11-26 17:19:25 +00:00
parent 84dd674cd0
commit 506472e0c6
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3
1 changed files with 2 additions and 2 deletions

View File

@ -1738,9 +1738,9 @@ skip:
if (add_fail)
m_p2p->add_host_fail(context.m_remote_address);
m_p2p->drop_connection(context);
m_block_queue.flush_spans(context.m_connection_id, flush_all_spans);
m_p2p->drop_connection(context);
}
//------------------------------------------------------------------------------------------------------------------------
template<class t_core>