mirror of
https://github.com/borgbackup/borg.git
synced 2026-07-15 21:12:50 -04:00
Merge pull request #7058 from ThomasWaldmann/fix-memoryview-crash
avoid memoryview related TypeError in compressors
This commit is contained in:
commit
1a89db0a70
1 changed files with 2 additions and 0 deletions
|
|
@ -86,6 +86,8 @@ cdef class CompressorBase:
|
|||
"""
|
||||
Compress *data* (bytes) and return compression metadata and compressed bytes.
|
||||
"""
|
||||
if not isinstance(data, bytes):
|
||||
data = bytes(data) # code below does not work with memoryview
|
||||
if self.legacy_mode:
|
||||
return None, bytes((self.ID, self.level)) + data
|
||||
else:
|
||||
|
|
|
|||
Loading…
Reference in a new issue