From: David Roda Date: Wed, 17 Feb 2016 16:49:38 +0000 (-0500) Subject: Close file handle when finished reading file X-Git-Tag: v0.16~321 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=284e959f;p=brevno-suite%2Fhugo Close file handle when finished reading file --- diff --git a/tpl/template_resources.go b/tpl/template_resources.go index 204c0f39..8f438155 100644 --- a/tpl/template_resources.go +++ b/tpl/template_resources.go @@ -88,7 +88,7 @@ func resGetCache(id string, fs afero.Fs, ignoreCache bool) ([]byte, error) { if err != nil { return nil, err } - + defer f.Close() return ioutil.ReadAll(f) } @@ -167,6 +167,7 @@ func resGetLocal(url string, fs afero.Fs) ([]byte, error) { if err != nil { return nil, err } + defer f.Close() return ioutil.ReadAll(f) }