mirror of
https://github.com/octoleo/restic.git
synced 2024-11-02 11:46:36 +00:00
backend.LoadAll: Check errors from io.Copy()
This commit is contained in:
parent
63870d2830
commit
b84e63d503
@ -14,8 +14,12 @@ func LoadAll(be restic.Backend, h restic.Handle) (buf []byte, err error) {
|
||||
}
|
||||
|
||||
defer func() {
|
||||
io.Copy(ioutil.Discard, rd)
|
||||
e := rd.Close()
|
||||
_, e := io.Copy(ioutil.Discard, rd)
|
||||
if err == nil {
|
||||
err = e
|
||||
}
|
||||
|
||||
e = rd.Close()
|
||||
if err == nil {
|
||||
err = e
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user