1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-26 01:15:38 +00:00

fix a typo in local dns

This commit is contained in:
Darien Raymond 2018-12-06 21:34:05 +01:00
parent f49f85b5bd
commit 6b355ef461
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -26,7 +26,7 @@ func (*Client) LookupIP(host string) ([]net.IP, error) {
return nil, err
}
parsedIPs := make([]net.IP, 0, len(ips))
for _, ip := range parsedIPs {
for _, ip := range ips {
parsed := net.IPAddress(ip)
if parsed != nil {
parsedIPs = append(parsedIPs, parsed.IP())