Merge pull request #6280 from wzshiming/fix/close-with-seek-fail
content/local: Close the file if Seek fails
This commit is contained in:
commit
cf6f19cea0
@ -592,6 +592,7 @@ func (s *store) writer(ctx context.Context, ref string, total int64, expected di
|
|||||||
}
|
}
|
||||||
|
|
||||||
if _, err := fp.Seek(offset, io.SeekStart); err != nil {
|
if _, err := fp.Seek(offset, io.SeekStart); err != nil {
|
||||||
|
fp.Close()
|
||||||
return nil, errors.Wrap(err, "could not seek to current write offset")
|
return nil, errors.Wrap(err, "could not seek to current write offset")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user