Skip to content

Commit 506552a

Browse files
hang.jiangcyphar
hang.jiang
authored andcommitted
Fix File to Close
(This is a cherry-pick of 937ca10.) Signed-off-by: hang.jiang <[email protected]> Fixes: GHSA-xr7r-f8xq-vfvv CVE-2024-21626 Signed-off-by: Aleksa Sarai <[email protected]>
1 parent 099ff69 commit 506552a

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

libcontainer/cgroups/fs/paths.go

+1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ func tryDefaultCgroupRoot() string {
8383
if err != nil {
8484
return ""
8585
}
86+
defer dir.Close()
8687
names, err := dir.Readdirnames(1)
8788
if err != nil {
8889
return ""

update.go

+1
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ other options are ignored.
174174
if err != nil {
175175
return err
176176
}
177+
defer f.Close()
177178
}
178179
err = json.NewDecoder(f).Decode(&r)
179180
if err != nil {

0 commit comments

Comments
 (0)