Skip to content

Commit

Permalink
net: fix small bug introduced by 48f7c4dd87fe
Browse files Browse the repository at this point in the history
Fixes #6063

R=golang-dev, r, dave
CC=dvyukov, golang-dev
https://golang.org/cl/12586043
  • Loading branch information
alexbrainman committed Aug 7, 2013
1 parent 1535727 commit 60aa48c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pkg/net/fd_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ func (fd *netFD) init() error {
fd.wop.runtimeCtx = fd.pd.runtimeCtx
if !canCancelIO {
fd.rop.errc = make(chan error)
fd.rop.errc = make(chan error)
fd.wop.errc = make(chan error)
}
return nil
}
Expand Down

0 comments on commit 60aa48c

Please sign in to comment.