revendor go-runc to acb7c88c

Signed-off-by: Justin Terry (VM) <juterry@microsoft.com>
This commit is contained in:
Justin Terry (VM) 2018-08-23 10:33:30 -07:00
parent 830363acac
commit 57979e1ed2
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
github.com/containerd/go-runc 808e8444ac4633a8e5eb7314fc6b5d27051727dd github.com/containerd/go-runc acb7c88cac264acca9b5eae187a117f4d77a1292
github.com/containerd/console c12b1e7919c14469339a5d38f2f8ed9b64a9de23 github.com/containerd/console c12b1e7919c14469339a5d38f2f8ed9b64a9de23
github.com/containerd/cgroups 5e610833b72089b37d0e615de9a92dfc043757c2 github.com/containerd/cgroups 5e610833b72089b37d0e615de9a92dfc043757c2
github.com/containerd/typeurl a93fcdb778cd272c6e9b3028b2f42d813e785d40 github.com/containerd/typeurl a93fcdb778cd272c6e9b3028b2f42d813e785d40

View File

@ -51,9 +51,9 @@ type pipe struct {
} }
func (p *pipe) Close() error { func (p *pipe) Close() error {
err := p.r.Close() err := p.w.Close()
if werr := p.w.Close(); err == nil { if rerr := p.r.Close(); err == nil {
err = werr err = rerr
} }
return err return err
} }