mirror of
https://github.com/octoleo/syncthing.git
synced 2025-01-22 22:58:25 +00:00
parent
b0b3abf76b
commit
c0c18a568c
@ -647,7 +647,7 @@ func (db *Lowlevel) gcIndirect(ctx context.Context) error {
|
||||
}
|
||||
|
||||
key := blockListKey(it.Key())
|
||||
if blockFilter.Has(bloomHash(key)) {
|
||||
if blockFilter.Has(bloomHash(key.BlocksHash())) {
|
||||
matchedBlocks++
|
||||
continue
|
||||
}
|
||||
@ -672,8 +672,8 @@ func (db *Lowlevel) gcIndirect(ctx context.Context) error {
|
||||
|
||||
// Hash function for the bloomfilter: first eight bytes of the SHA-256.
|
||||
// Big or little-endian makes no difference, as long as we're consistent.
|
||||
func bloomHash(key blockListKey) uint64 {
|
||||
return binary.BigEndian.Uint64(key.BlocksHash())
|
||||
func bloomHash(key []byte) uint64 {
|
||||
return binary.BigEndian.Uint64(key)
|
||||
}
|
||||
|
||||
// CheckRepair checks folder metadata and sequences for miscellaneous errors.
|
||||
|
Loading…
x
Reference in New Issue
Block a user