diff options
Diffstat (limited to 'internal/fusefrontend')
| -rw-r--r-- | internal/fusefrontend/file.go | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/internal/fusefrontend/file.go b/internal/fusefrontend/file.go index 6f963e7..70c8d83 100644 --- a/internal/fusefrontend/file.go +++ b/internal/fusefrontend/file.go @@ -172,7 +172,8 @@ func (f *file) doRead(dst []byte, off uint64, length uint64) ([]byte, fuse.Statu  	skip := blocks[0].Skip  	tlog.Debug.Printf("JointCiphertextRange(%d, %d) -> %d, %d, %d", off, length, alignedOffset, alignedLength, skip) -	ciphertext := make([]byte, int(alignedLength)) +	ciphertext := f.fs.contentEnc.CReqPool.Get() +	ciphertext = ciphertext[:int(alignedLength)]  	n, err := f.fd.ReadAt(ciphertext, int64(alignedOffset))  	// We don't care if the file ID changes after we have read the data. Drop the lock.  	f.fileTableEntry.HeaderLock.RUnlock() @@ -188,6 +189,7 @@ func (f *file) doRead(dst []byte, off uint64, length uint64) ([]byte, fuse.Statu  	// Decrypt it  	plaintext, err := f.contentEnc.DecryptBlocks(ciphertext, firstBlockNo, fileID) +	f.fs.contentEnc.CReqPool.Put(ciphertext)  	if err != nil {  		if f.fs.args.ForceDecode && err == stupidgcm.ErrAuth {  			// We do not have the information which block was corrupt here anymore, | 
