From afab9f47f619120f22e5d586d417c71551f8d000 Mon Sep 17 00:00:00 2001 From: practicalswift Date: Sat, 14 Jan 2017 20:18:20 +0100 Subject: [PATCH] [test] Avoid potential NULL pointer dereference in addrman_tests.cpp --- src/test/addrman_tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/addrman_tests.cpp b/src/test/addrman_tests.cpp index 48313915e..322addc9f 100644 --- a/src/test/addrman_tests.cpp +++ b/src/test/addrman_tests.cpp @@ -297,7 +297,7 @@ BOOST_AUTO_TEST_CASE(addrman_find) // Test 18; Find does not discriminate by port number. CAddrInfo* info2 = addrman.Find(addr2); BOOST_CHECK(info2); - if (info2) + if (info2 && info1) BOOST_CHECK(info2->ToString() == info1->ToString()); // Test 19: Find returns another IP matching what we searched on.