mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Fix file leak in integration-cli
Signed-off-by: Qiang Huang <h.huangqiang@huawei.com>
This commit is contained in:
parent
cab02a5bbc
commit
d28b0ba115
1 changed files with 1 additions and 0 deletions
|
@ -1093,6 +1093,7 @@ func writeFile(dst, content string, c *check.C) {
|
|||
if err != nil {
|
||||
c.Fatal(err)
|
||||
}
|
||||
defer f.Close()
|
||||
// Write content (truncate if it exists)
|
||||
if _, err := io.Copy(f, strings.NewReader(content)); err != nil {
|
||||
c.Fatal(err)
|
||||
|
|
Loading…
Add table
Reference in a new issue