diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2018-07-16 14:07:52 -0700 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2018-07-16 14:08:38 -0700 |
commit | 347b4ff825e2e1202e8466ee9dcd90078cb1c861 (patch) | |
tree | 8661a7355dd6f12248995d8316252c64df1de40b /src/net.h | |
parent | f8d470e24606297dab95e30b1d39ff664fbda31d (diff) |
Initialize m_next_send_inv_to_incoming
Diffstat (limited to 'src/net.h')
-rw-r--r-- | src/net.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; }; |