From a552e8477c5bcd22a5457f4f73a2fd6db8acd2c2 Mon Sep 17 00:00:00 2001 From: User Date: Fri, 25 Oct 2019 16:28:14 -0400 Subject: added asserts to check m_addr_known when it's used --- src/net.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/net.h') diff --git a/src/net.h b/src/net.h index 4a7f7bc093..95193a09db 100644 --- a/src/net.h +++ b/src/net.h @@ -884,6 +884,7 @@ public: void AddAddressKnown(const CAddress& _addr) { + assert(m_addr_known); m_addr_known->insert(_addr.GetKey()); } @@ -892,6 +893,7 @@ public: // Known checking here is only to save space from duplicates. // SendMessages will filter it again for knowns that were added // after addresses were pushed. + assert(m_addr_known); if (_addr.IsValid() && !m_addr_known->contains(_addr.GetKey())) { if (vAddrToSend.size() >= MAX_ADDR_TO_SEND) { vAddrToSend[insecure_rand.randrange(vAddrToSend.size())] = _addr; -- cgit v1.2.3