2
2
mirror of https://github.com/octoleo/restic.git synced 2024-09-28 22:49:01 +00:00

Merge pull request #651 from justinclift/issue649v1

Remove redundant check of error var e
This commit is contained in:
Alexander Neumann 2016-10-26 16:06:14 +02:00
commit 6b88d3b5d0
2 changed files with 2 additions and 2 deletions

View File

@ -118,7 +118,7 @@ func (b *Local) Load(h restic.Handle, p []byte, off int64) (n int, err error) {
defer func() {
e := f.Close()
if err == nil && e != nil {
if err == nil {
err = errors.Wrap(e, "Close")
}
}()

View File

@ -345,7 +345,7 @@ func (r *SFTP) Load(h restic.Handle, p []byte, off int64) (n int, err error) {
defer func() {
e := f.Close()
if err == nil && e != nil {
if err == nil {
err = errors.Wrap(e, "Close")
}
}()