Merge pull request #2613 from sky5454/tmp_govet_fix

chore(isolation): fix govet shadow declaration of "err" shadows
This commit is contained in:
Mauro
2026-04-21 18:30:48 +02:00
committed by GitHub
+1 -1
View File
@@ -76,7 +76,7 @@ func postStartPlatformIsolation(cmd *exec.Cmd, isolation config.IsolationConfig,
info := windows.JOBOBJECT_EXTENDED_LIMIT_INFORMATION{}
info.BasicLimitInformation.LimitFlags = windows.JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE
if _, err := windows.SetInformationJobObject(
if _, err = windows.SetInformationJobObject(
job,
windows.JobObjectExtendedLimitInformation,
uintptr(unsafe.Pointer(&info)),