internal/outcome/shim: params check early
All checks were successful
Test / Create distribution (push) Successful in 35s
Test / Sandbox (push) Successful in 2m16s
Test / Hakurei (push) Successful in 3m18s
Test / Hpkg (push) Successful in 4m0s
Test / Hakurei (race detector) (push) Successful in 4m56s
Test / Sandbox (race detector) (push) Successful in 4m11s
Test / Flake checks (push) Successful in 1m29s

This is unreachable, but keeping it here as a failsafe until more test cases are added.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2025-10-29 23:10:12 +09:00
parent a0b4e47acc
commit 2563391086
2 changed files with 25 additions and 24 deletions

View File

@@ -147,6 +147,9 @@ func shimEntrypoint(k syscallDispatcher) {
}
}
}
if stateParams.params.Ops == nil { // unreachable
k.fatal("invalid container params")
}
// shim exit outcomes
var cancelContainer atomic.Pointer[context.CancelFunc]
@@ -187,10 +190,6 @@ func shimEntrypoint(k syscallDispatcher) {
}
})
if stateParams.params.Ops == nil {
k.fatal("invalid container params")
}
// close setup socket
if err := closeSetup(); err != nil {
msg.Verbosef("cannot close setup pipe: %v", err)