runc/patch/0026-runc-Fixed-init-state-error-variable.patch
2023-07-28 09:46:10 +08:00

26 lines
841 B
Diff

From f9add2c83320bd04ac76120821802ad7e25991d5 Mon Sep 17 00:00:00 2001
From: zhongjiawei <zhongjiawei1@huawei.com>
Date: Wed, 26 Jul 2023 16:46:35 +0800
Subject: [PATCH] runc:Fixed init state error variable
---
libcontainer/process_linux.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libcontainer/process_linux.go b/libcontainer/process_linux.go
index 1124cf5..3b453cc 100644
--- a/libcontainer/process_linux.go
+++ b/libcontainer/process_linux.go
@@ -555,7 +555,7 @@ func (p *initProcess) start() (retErr error) {
// procRun sync.
state, uerr := p.container.updateState(p)
if uerr != nil {
- return fmt.Errorf("unable to store init state: %w", err)
+ return fmt.Errorf("unable to store init state: %w", uerr)
}
p.container.initProcessStartTime = state.InitProcessStartTime
--
2.33.0