diff options
author | anonimal <anonimal@getmonero.org> | 2019-09-06 23:18:00 +0000 |
---|---|---|
committer | anonimal <anonimal@getmonero.org> | 2019-09-06 23:18:00 +0000 |
commit | 2825f07d95ae32110486905232b7a64609cfa6ea (patch) | |
tree | 2d67764c79e3b7c7271533d85f8113cd08233fdd | |
parent | wallet2: resolve CID 203918 null pointer deference (NULL_RETURNS) (diff) | |
download | monero-2825f07d95ae32110486905232b7a64609cfa6ea.tar.xz |
epee: connection_basic: resolve CID 203916 (UNINIT_CTOR)
-rw-r--r-- | contrib/epee/src/connection_basic.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/epee/src/connection_basic.cpp b/contrib/epee/src/connection_basic.cpp index 2ff757f30..3ce7a1057 100644 --- a/contrib/epee/src/connection_basic.cpp +++ b/contrib/epee/src/connection_basic.cpp @@ -161,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 |