commit | 13b0908ee0c2dd671f64574e55c6fe447bcb4644 | [log] [tgz] |
---|---|---|
author | Mikio Hara <mikioh.mikioh@gmail.com> | Fri Feb 20 10:57:31 2015 +0900 |
committer | Mikio Hara <mikioh.mikioh@gmail.com> | Sat Mar 14 03:04:11 2015 +0000 |
tree | 8ed7190a28168cad84294087032c7ba8d72d81ed | |
parent | 6dc0abcce25682504770fa9a7a6705bbfdebfa48 [diff] [blame] |
websocket: fix socket leak in the case of negotiation failure Change-Id: Ie5712a49f0c909538f4c36311b591e930a77efb5 Reviewed-on: https://go-review.googlesource.com/5410 Reviewed-by: Andrew Gerrand <adg@golang.org>
diff --git a/websocket/client.go b/websocket/client.go index ef11a51..20d1e1e 100644 --- a/websocket/client.go +++ b/websocket/client.go
@@ -103,6 +103,7 @@ ws, err = NewClient(config, client) if err != nil { + client.Close() goto Error } return