mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-26 09:47:58 +00:00
Merge pull request #3663 from ThomasWaldmann/fix-compiler-warning
make the C compiler happy, fixes #3490
This commit is contained in:
commit
b862c15691
1 changed files with 2 additions and 2 deletions
|
@ -729,7 +729,7 @@ cdef class AES:
|
|||
cdef Py_buffer idata = ro_buffer(data)
|
||||
cdef int ilen = len(data)
|
||||
cdef int offset
|
||||
cdef int olen
|
||||
cdef int olen = 0
|
||||
cdef unsigned char *odata = <unsigned char *>PyMem_Malloc(ilen + self.cipher_blk_len)
|
||||
if not odata:
|
||||
raise MemoryError
|
||||
|
@ -753,7 +753,7 @@ cdef class AES:
|
|||
cdef Py_buffer idata = ro_buffer(data)
|
||||
cdef int ilen = len(data)
|
||||
cdef int offset
|
||||
cdef int olen
|
||||
cdef int olen = 0
|
||||
cdef unsigned char *odata = <unsigned char *>PyMem_Malloc(ilen + self.cipher_blk_len)
|
||||
if not odata:
|
||||
raise MemoryError
|
||||
|
|
Loading…
Reference in a new issue