libcontainer/windows: Remove unneeded var declaration
The cleanup defer uses an `outErr` now, so we don't need to worry about shadowing. Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
This commit is contained in:
parent
55b664046c
commit
b805599ef6
1 changed files with 1 additions and 3 deletions
|
@ -474,9 +474,7 @@ func (ctr *container) Start(_ context.Context, _ string, withStdin bool, attachS
|
|||
// exit event is not sent out-of-order.
|
||||
defer func() { go t.reap() }()
|
||||
|
||||
// Don't shadow err here due to our deferred clean-up.
|
||||
var dio *cio.DirectIO
|
||||
dio, err = newIOFromProcess(newProcess, ctr.ociSpec.Process.Terminal)
|
||||
dio, err := newIOFromProcess(newProcess, ctr.ociSpec.Process.Terminal)
|
||||
if err != nil {
|
||||
logger.WithError(err).Error("failed to get stdio pipes")
|
||||
return nil, err
|
||||
|
|
Loading…
Reference in a new issue