repository: Simplify Blob equality check

This commit is contained in:
Michael Eischer
2022-02-13 16:50:50 +01:00
parent 243698680a
commit 6408686973
2 changed files with 2 additions and 2 deletions

View File

@@ -543,7 +543,7 @@ func (idx *Index) merge(idx2 *Index) error {
m.foreachWithID(e2.id, func(e *indexEntry) {
b := idx.toPackedBlob(e, restic.BlobType(typ))
b2 := idx2.toPackedBlob(e2, restic.BlobType(typ))
if b.Length == b2.Length && b.Offset == b2.Offset && b.PackID == b2.PackID {
if b == b2 {
found = true
}
})