Skip to content

Commit 790c3a3

Browse files
committed
Remove extra allocation in NewTask
Reorders the code so that it doesnt overwrite the previous allocation when creating a NewTask via ctr.exe Signed-off-by: Justin Terry (VM) <[email protected]>
1 parent 6a252a7 commit 790c3a3

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

cmd/ctr/commands/tasks/tasks_windows.go

+6-5
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,16 @@ func HandleConsoleResize(ctx gocontext.Context, task resizer, con console.Consol
5959

6060
// NewTask creates a new task
6161
func NewTask(ctx gocontext.Context, client *containerd.Client, container containerd.Container, _ string, tty, nullIO bool, ioOpts []cio.Opt, opts ...containerd.NewTaskOpts) (containerd.Task, error) {
62-
ioCreator := cio.NewCreator(append([]cio.Opt{cio.WithStdio}, ioOpts...)...)
62+
var ioCreator cio.Creator
6363
if tty {
64-
ioCreator = cio.NewCreator(append([]cio.Opt{cio.WithStdio, cio.WithTerminal}, ioOpts...)...)
65-
}
66-
if nullIO {
67-
if tty {
64+
if nullIO {
6865
return nil, errors.New("tty and null-io cannot be used together")
6966
}
67+
ioCreator = cio.NewCreator(append([]cio.Opt{cio.WithStdio, cio.WithTerminal}, ioOpts...)...)
68+
} else if nullIO {
7069
ioCreator = cio.NullIO
70+
} else {
71+
ioCreator = cio.NewCreator(append([]cio.Opt{cio.WithStdio}, ioOpts...)...)
7172
}
7273
return container.NewTask(ctx, ioCreator)
7374
}

0 commit comments

Comments
 (0)