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