Merge pull request #1605 from sanimej/slice
ResolveName should return copy of IPs
This commit is contained in:
commit
ac7deb041b
1 changed files with 3 additions and 1 deletions
|
@ -1645,7 +1645,9 @@ func (n *network) ResolveName(req string, ipType int) ([]net.IP, bool) {
|
|||
}
|
||||
|
||||
if ip != nil {
|
||||
return ip, false
|
||||
ipLocal := make([]net.IP, len(ip))
|
||||
copy(ipLocal, ip)
|
||||
return ipLocal, false
|
||||
}
|
||||
|
||||
return nil, ipv6Miss
|
||||
|
|
Loading…
Reference in a new issue