mirror of
https://github.com/borgbackup/borg.git
synced 2025-01-19 14:02:55 +00:00
Fix missing return code check in ChunkIndex._add
(used by ChunkIndex.merge and ChunkIndex.add)
This commit is contained in:
parent
66cc520880
commit
3a81a947a1
1 changed files with 2 additions and 1 deletions
|
@ -310,7 +310,8 @@ cdef class ChunkIndex(IndexBase):
|
||||||
result64 = refcount1 + refcount2
|
result64 = refcount1 + refcount2
|
||||||
values[0] = _htole32(min(result64, _MAX_VALUE))
|
values[0] = _htole32(min(result64, _MAX_VALUE))
|
||||||
else:
|
else:
|
||||||
hashindex_set(self.index, key, data)
|
if not hashindex_set(self.index, key, data):
|
||||||
|
raise Exception('hashindex_set failed')
|
||||||
|
|
||||||
def merge(self, ChunkIndex other):
|
def merge(self, ChunkIndex other):
|
||||||
cdef void *key = NULL
|
cdef void *key = NULL
|
||||||
|
|
Loading…
Reference in a new issue