mirror of
https://github.com/octoleo/restic.git
synced 2024-11-05 12:57:53 +00:00
backup: Improve error handling
This commit is contained in:
parent
1a0eb05bfa
commit
cbd88c457a
@ -205,10 +205,21 @@ func readFilenamesFromFileRaw(filename string) (names []string, err error) {
|
||||
if f, err = os.Open(filename); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
defer f.Close()
|
||||
}
|
||||
|
||||
return readFilenamesRaw(f)
|
||||
names, err = readFilenamesRaw(f)
|
||||
if err != nil {
|
||||
// ignore subsequent errors
|
||||
_ = f.Close()
|
||||
return nil, err
|
||||
}
|
||||
|
||||
err = f.Close()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return names, nil
|
||||
}
|
||||
|
||||
func readFilenamesRaw(r io.Reader) (names []string, err error) {
|
||||
|
Loading…
Reference in New Issue
Block a user