aboutsummaryrefslogtreecommitdiff
path: root/src/netaddress.h
diff options
context:
space:
mode:
authorKaz Wesley <kaz@lambdaverse.org>2018-11-14 11:53:27 -0800
committerKaz Wesley <kaz@lambdaverse.org>2018-11-15 13:47:53 -0800
commitb7b36decaf878a8c1dcfdb4a27196c730043474b (patch)
tree9550195c8b45644f37f870390c7735a290e8cbf8 /src/netaddress.h
parent8ebbef016928811756e46b9086067d1c826797a8 (diff)
downloadbitcoin-b7b36decaf878a8c1dcfdb4a27196c730043474b.tar.xz
fix uninitialized read when stringifying an addrLocal
Reachable from either place where SetIP is used when our best-guess addrLocal for a peer is IPv4, but the peer tells us it's reaching us at an IPv6 address. In that case, SetIP turns an IPv4 address into an IPv6 address without setting the scopeId, which is subsequently read in GetSockAddr during CNetAddr::ToStringIP and passed to getnameinfo. Fix by ensuring every constructor initializes the scopeId field with something.
Diffstat (limited to 'src/netaddress.h')
-rw-r--r--src/netaddress.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/netaddress.h b/src/netaddress.h
index cc0e4d4f12..dc55d8b1a8 100644
--- a/src/netaddress.h
+++ b/src/netaddress.h
@@ -33,7 +33,7 @@ class CNetAddr
{
protected:
unsigned char ip[16]; // in network byte order
- uint32_t scopeId; // for scoped/link-local ipv6 addresses
+ uint32_t scopeId{0}; // for scoped/link-local ipv6 addresses
public:
CNetAddr();