Prevent Close() from being called after Finish()
This commit is contained in:
parent
7721fe5a65
commit
4ac515fde4
1 changed files with 4 additions and 0 deletions
|
@ -109,6 +109,10 @@ func (lw *layerWriter) ReadFrom(r io.Reader) (n int64, err error) {
|
|||
}
|
||||
|
||||
func (lw *layerWriter) Close() error {
|
||||
if lw.err != nil {
|
||||
return lw.err
|
||||
}
|
||||
|
||||
if err := lw.storeHashState(); err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue