p2p: fix goroutine leak when handshake read fails

This regression was introduced in b3c058a9e4.
This commit is contained in:
Felix Lange 2015-04-13 17:06:19 +02:00
parent faa2747809
commit 79a6782c1c
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ func setupOutboundConn(fd net.Conn, prv *ecdsa.PrivateKey, our *protoHandshake,
// returning the handshake read error. If the remote side
// disconnects us early with a valid reason, we should return it
// as the error so it can be tracked elsewhere.
werr := make(chan error)
werr := make(chan error, 1)
go func() { werr <- Send(rw, handshakeMsg, our) }()
rhs, err := readProtocolHandshake(rw, secrets.RemoteID, our)
if err != nil {