command: error handling before file close (#6681)

This commit is contained in:
Lars Lehtonen 2019-11-13 05:18:20 -08:00 committed by Tim Gross
parent 1e906768dd
commit e85509c466
1 changed files with 1 additions and 1 deletions

View File

@ -421,10 +421,10 @@ func (j *JobGetter) ApiJob(jpath string) (*api.Job, error) {
return nil, fmt.Errorf("Error getting jobfile from %q: %v", jpath, err)
} else {
file, err := os.Open(job.Name())
defer file.Close()
if err != nil {
return nil, fmt.Errorf("Error opening file %q: %v", jpath, err)
}
defer file.Close()
jobfile = file
}
}