diff options
Diffstat (limited to 'storage/filesystem/object.go')
-rw-r--r-- | storage/filesystem/object.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/storage/filesystem/object.go b/storage/filesystem/object.go index 862cc1b..7437174 100644 --- a/storage/filesystem/object.go +++ b/storage/filesystem/object.go @@ -408,6 +408,8 @@ func (s *ObjectStorage) getFromUnpacked(h plumbing.Hash) (obj plumbing.EncodedOb return nil, err } + defer ioutil.CheckClose(w, &err) + s.objectCache.Put(obj) _, err = io.Copy(w, r) |