internal: check error before deferring file Close()

If there is an error, file will be `nil`. We should check the returned error before deferring file `Close()`.
This commit is contained in:
Emil Hessman
2017-08-13 19:07:23 +02:00
parent a0966e1d1d
commit c2ff7150aa
3 changed files with 3 additions and 4 deletions

View File

@@ -210,10 +210,10 @@ func updateNodeContent(node *restic.Node, results []saveResult) error {
// Save for each chunk.
func (arch *Archiver) SaveFile(ctx context.Context, p *restic.Progress, node *restic.Node) (*restic.Node, error) {
file, err := fs.Open(node.Path)
defer file.Close()
if err != nil {
return node, errors.Wrap(err, "Open")
}
defer file.Close()
debug.RunHook("archiver.SaveFile", node.Path)