Add missed close in ServeBlobLFS (#8527)

This commit is contained in:
zeripath
2019-10-16 06:55:31 +01:00
committed by GitHub
parent 31655aabfc
commit e1505d6250

View File

@ -84,6 +84,11 @@ func ServeBlobOrLFS(ctx *context.Context, blob *git.Blob) error {
if err != nil {
return err
}
defer func() {
if err = lfsDataRc.Close(); err != nil {
log.Error("ServeBlobOrLFS: Close: %v", err)
}
}()
return ServeData(ctx, ctx.Repo.TreePath, lfsDataRc)
}