Explorar el Código

Fix missing return code check in ChunkIndex._add

(used by ChunkIndex.merge and ChunkIndex.add)
Marian Beermann hace 9 años
padre
commit
3a81a947a1
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      borg/hashindex.pyx

+ 2 - 1
borg/hashindex.pyx

@@ -310,7 +310,8 @@ cdef class ChunkIndex(IndexBase):
             result64 = refcount1 + refcount2
             values[0] = _htole32(min(result64, _MAX_VALUE))
         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):
         cdef void *key = NULL