mirror of
https://github.com/octoleo/restic.git
synced 2024-11-13 00:36:35 +00:00
Explicitly Close() obj after ReadFull()
Signed-off-by: Ben Agricola <bagricola@squiz.co.uk>
This commit is contained in:
parent
e1960cadb2
commit
edb1843f24
@ -97,7 +97,17 @@ func (be s3) Load(h backend.Handle, p []byte, off int64) (int, error) {
|
|||||||
defer func() {
|
defer func() {
|
||||||
be.connChan <- struct{}{}
|
be.connChan <- struct{}{}
|
||||||
}()
|
}()
|
||||||
return io.ReadFull(obj, p)
|
|
||||||
|
// This may not read the whole object, so ensure object
|
||||||
|
// is closed to avoid duplicate connections.
|
||||||
|
n, err := io.ReadFull(obj, p)
|
||||||
|
if err != nil {
|
||||||
|
obj.Close()
|
||||||
|
} else {
|
||||||
|
err = obj.Close()
|
||||||
|
}
|
||||||
|
return n, err
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Save stores data in the backend at the handle.
|
// Save stores data in the backend at the handle.
|
||||||
|
Loading…
Reference in New Issue
Block a user