mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-25 18:53:23 -03:00
net: Add missing verification of IPv6 address in CNetAddr::GetIn6Addr(...)
This commit is contained in:
parent
f58674a20a
commit
2fb0066b99
1 changed files with 3 additions and 0 deletions
|
@ -300,6 +300,9 @@ bool CNetAddr::GetInAddr(struct in_addr* pipv4Addr) const
|
|||
|
||||
bool CNetAddr::GetIn6Addr(struct in6_addr* pipv6Addr) const
|
||||
{
|
||||
if (!IsIPv6()) {
|
||||
return false;
|
||||
}
|
||||
memcpy(pipv6Addr, ip, 16);
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue