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

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