diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2017-01-14 20:18:20 +0100 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2017-01-14 20:18:20 +0100 |
commit | afab9f47f619120f22e5d586d417c71551f8d000 (patch) | |
tree | 97022790889f1d635277818c009314458e1ec220 /src | |
parent | 02e5308c1b9f3771bbe49bc5036215fa2bd66aa9 (diff) |
[test] Avoid potential NULL pointer dereference in addrman_tests.cpp
Diffstat (limited to 'src')
-rw-r--r-- | src/test/addrman_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/addrman_tests.cpp b/src/test/addrman_tests.cpp index 48313915e7..322addc9f6 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. |