]> Cypherpunks repositories - gostls13.git/commitdiff
os/exec: remove BUG for old and unsupported OS
authorBrad Fitzpatrick <bradfitz@golang.org>
Fri, 9 Jun 2017 16:45:55 +0000 (16:45 +0000)
committerBrad Fitzpatrick <bradfitz@golang.org>
Fri, 9 Jun 2017 18:09:27 +0000 (18:09 +0000)
Nobody uses 10.6 these days anyway.

Fixes #20623

Change-Id: I698c83cbc288082558e34097ff54d1428aed75ec
Reviewed-on: https://go-review.googlesource.com/45171
Reviewed-by: Matt Layher <mdlayher@gmail.com>
src/os/exec/exec.go

index 0b16f22a99f8e6be431d735ac28c9d63749c7ed9..7f0d68b07162d5467887b9de891fad35dce85c51 100644 (file)
@@ -91,9 +91,6 @@ type Cmd struct {
        // ExtraFiles specifies additional open files to be inherited by the
        // new process. It does not include standard input, standard output, or
        // standard error. If non-nil, entry i becomes file descriptor 3+i.
-       //
-       // BUG(rsc): On OS X 10.6, child processes may sometimes inherit unwanted fds.
-       // https://golang.org/issue/2603
        ExtraFiles []*os.File
 
        // SysProcAttr holds optional, operating system-specific attributes.