41 lines
1.1 KiB
Diff
41 lines
1.1 KiB
Diff
From 329422245586df752a020d3887cb0ee83cab7f59 Mon Sep 17 00:00:00 2001
|
|
From: "hang.jiang" <hang.jiang@daocloud.io>
|
|
Date: Fri, 1 Sep 2023 16:17:13 +0800
|
|
Subject: [PATCH 1/4] Fix File to Close
|
|
|
|
Reference:https://github.com/opencontainers/runc/commit/937ca107c3d22da77eb8e8030f2342253b980980
|
|
|
|
Signed-off-by: hang.jiang <hang.jiang@daocloud.io>
|
|
---
|
|
libcontainer/cgroups/fs/paths.go | 1 +
|
|
update.go | 1 +
|
|
2 files changed, 2 insertions(+)
|
|
|
|
diff --git a/libcontainer/cgroups/fs/paths.go b/libcontainer/cgroups/fs/paths.go
|
|
index 1092331b..2cb970a3 100644
|
|
--- a/libcontainer/cgroups/fs/paths.go
|
|
+++ b/libcontainer/cgroups/fs/paths.go
|
|
@@ -83,6 +83,7 @@ func tryDefaultCgroupRoot() string {
|
|
if err != nil {
|
|
return ""
|
|
}
|
|
+ defer dir.Close()
|
|
names, err := dir.Readdirnames(1)
|
|
if err != nil {
|
|
return ""
|
|
diff --git a/update.go b/update.go
|
|
index 9ce5a2e8..6d582ddd 100644
|
|
--- a/update.go
|
|
+++ b/update.go
|
|
@@ -174,6 +174,7 @@ other options are ignored.
|
|
if err != nil {
|
|
return err
|
|
}
|
|
+ defer f.Close()
|
|
}
|
|
err = json.NewDecoder(f).Decode(&r)
|
|
if err != nil {
|
|
--
|
|
2.27.0
|
|
|