Initialize m_next_send_inv_to_incoming

This commit is contained in:
Pieter Wuille 2018-07-16 14:07:52 -07:00
parent f8d470e246
commit 347b4ff825
1 changed files with 1 additions and 1 deletions

View File

@ -441,7 +441,7 @@ private:
* This takes the place of a feeler connection */
std::atomic_bool m_try_another_outbound_peer;
std::atomic<int64_t> m_next_send_inv_to_incoming;
std::atomic<int64_t> m_next_send_inv_to_incoming{0};
friend struct CConnmanTest;
};