mirror of
https://github.com/monero-project/monero.git
synced 2025-08-06 02:14:17 -04:00
Merge pull request #5893
Coverity fixes [3a81639
,1bd962d
,2825f07
,d099658
,d46f701
,cd57a10
] (anonimal)
This commit is contained in:
commit
c6430f9dd0
6 changed files with 24 additions and 4 deletions
|
@ -136,6 +136,7 @@ connection_basic::connection_basic(boost::asio::ip::tcp::socket&& sock, std::sha
|
|||
socket_(GET_IO_SERVICE(sock), get_context(m_state.get())),
|
||||
m_want_close_connection(false),
|
||||
m_was_shutdown(false),
|
||||
m_is_multithreaded(false),
|
||||
m_ssl_support(ssl_support)
|
||||
{
|
||||
// add nullptr checks if removed
|
||||
|
@ -160,6 +161,7 @@ connection_basic::connection_basic(boost::asio::io_service &io_service, std::sha
|
|||
socket_(io_service, get_context(m_state.get())),
|
||||
m_want_close_connection(false),
|
||||
m_was_shutdown(false),
|
||||
m_is_multithreaded(false),
|
||||
m_ssl_support(ssl_support)
|
||||
{
|
||||
// add nullptr checks if removed
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue