Merge pull request #746 from restic/improve-fuse-memory

fuse: Improve memory usage
This commit is contained in:
Alexander Neumann 2017-01-24 14:13:01 +01:00
commit 439d3107f9
1 changed files with 5 additions and 0 deletions

View File

@ -91,6 +91,11 @@ func (f *file) getBlobAt(i int) (blob []byte, err error) {
return f.blobs[i], nil
}
// release earlier blobs
for j := 0; j < i; j++ {
f.blobs[j] = nil
}
buf := restic.NewBlobBuffer(f.sizes[i])
n, err := f.repo.LoadBlob(restic.DataBlob, f.node.Content[i], buf)
if err != nil {