Skip to content
This repository was archived by the owner on Sep 9, 2020. It is now read-only.

Commit fcbc4be

Browse files
authored
Merge pull request #1200 from tamird/fix-cmd-race
gps: avoid race condition in variable assignment
2 parents 88b7ad9 + be90d47 commit fcbc4be

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

internal/gps/cmd_unix.go

+3-7
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,6 @@ func (c cmd) CombinedOutput() ([]byte, error) {
5151
return nil, err
5252
}
5353

54-
var t *time.Timer
55-
defer func() {
56-
if t != nil {
57-
t.Stop()
58-
}
59-
}()
6054
// Adapted from (*os/exec.Cmd).Start
6155
waitDone := make(chan struct{})
6256
defer close(waitDone)
@@ -68,7 +62,9 @@ func (c cmd) CombinedOutput() ([]byte, error) {
6862
// immediately to hard kill.
6963
c.cancel()
7064
} else {
71-
t = time.AfterFunc(time.Minute, c.cancel)
65+
stopCancel := time.AfterFunc(time.Minute, c.cancel).Stop
66+
<-waitDone
67+
stopCancel()
7268
}
7369
case <-waitDone:
7470
}

0 commit comments

Comments
 (0)