Fix file leak in integration-cli

Signed-off-by: Qiang Huang <h.huangqiang@huawei.com>
This commit is contained in:
Qiang Huang 2015-07-09 18:52:18 +08:00
parent cab02a5bbc
commit d28b0ba115
1 changed files with 1 additions and 0 deletions

View File

@ -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)