mirror of
https://github.com/octoleo/restic.git
synced 2024-11-02 11:46:36 +00:00
Merge pull request #808 from restic/fix-807
restore: Make sure buffer is large enough
This commit is contained in:
commit
4772a4986b
@ -215,7 +215,7 @@ func (node Node) createFileAt(path string, repo Repository, idx *HardlinkIndex)
|
||||
}
|
||||
|
||||
buf = buf[:cap(buf)]
|
||||
if uint(len(buf)) < size {
|
||||
if len(buf) < CiphertextLength(int(size)) {
|
||||
buf = NewBlobBuffer(int(size))
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user