Merge pull request #1583 from restic/close-open-backend-files

Close backend files in case of errors
This commit is contained in:
Alexander Neumann
2018-01-26 21:57:28 +01:00
3 changed files with 4 additions and 0 deletions

View File

@@ -637,6 +637,7 @@ func checkPack(ctx context.Context, r restic.Repository, id restic.ID) error {
packfile, err := fs.TempFile("", "restic-temp-check-")
if err != nil {
_ = rd.Close()
return errors.Wrap(err, "TempFile")
}
@@ -648,6 +649,7 @@ func checkPack(ctx context.Context, r restic.Repository, id restic.ID) error {
hrd := hashing.NewReader(rd, sha256.New())
size, err := io.Copy(packfile, hrd)
if err != nil {
_ = rd.Close()
return errors.Wrap(err, "Copy")
}