5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-11-22 16:20:26 +00:00

Do not close body on err. Closes #364

This commit is contained in:
Wim 2018-02-07 00:04:02 +01:00
parent 432cd0f99d
commit 3480c88e90

View File

@ -20,9 +20,9 @@ func DownloadFile(url string) (*[]byte, error) {
} }
resp, err := client.Do(req) resp, err := client.Do(req)
if err != nil { if err != nil {
resp.Body.Close()
return nil, err return nil, err
} }
defer resp.Body.Close()
io.Copy(&buf, resp.Body) io.Copy(&buf, resp.Body)
data := buf.Bytes() data := buf.Bytes()
resp.Body.Close() resp.Body.Close()