reduce redundant memory allocatio - resolves btcsuite/btcd#1699
Signed-off-by: Tomasz Ziolkowski <tomasz.ziolkowski@allegro.pl>
This commit is contained in:
parent
3be166e3ae
commit
780cc0889f
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ func TorLookupIP(host, proxy string) ([]net.IP, error) {
|
||||||
return nil, ErrTorUnrecognizedAuthMethod
|
return nil, ErrTorUnrecognizedAuthMethod
|
||||||
}
|
}
|
||||||
|
|
||||||
buf = make([]byte, 7+len(host))
|
buf = make([]byte, 6+len(host))
|
||||||
buf[0] = 5 // protocol version
|
buf[0] = 5 // protocol version
|
||||||
buf[1] = '\xF0' // Tor Resolve
|
buf[1] = '\xF0' // Tor Resolve
|
||||||
buf[2] = 0 // reserved
|
buf[2] = 0 // reserved
|
||||||
|
|
Loading…
Reference in a new issue