瀏覽代碼

pkg/opts: Close the file handle

Docker-DCO-1.1-Signed-off-by: Vincent Batts <vbatts@redhat.com> (github: vbatts)
Vincent Batts 11 年之前
父節點
當前提交
bfaa917a96
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      pkg/opts/envfile.go

+ 2 - 0
pkg/opts/envfile.go

@@ -15,6 +15,8 @@ func ParseEnvFile(filename string) ([]string, error) {
 	if err != nil {
 		return []string{}, err
 	}
+  defer fh.Close()
+
 	var (
 		lines       []string = []string{}
 		line, chunk []byte