1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-20 21:26:53 +00:00

Merge pull request #2676 from transmission/fix/2667-bitfield-assertion-on-zero-byte-file

fix: bitfield assertion failure on zero-byte file
This commit is contained in:
Charles Kerr 2022-02-21 17:56:31 -06:00 committed by GitHub
commit 41b13db874
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2002,9 +2002,9 @@ tr_block_span_t tr_torGetFileBlockSpan(tr_torrent const* tor, tr_file_index_t i)
auto const [begin_byte, end_byte] = tor->fpm_.byteSpan(i);
auto const begin_block = tor->byteLoc(begin_byte).block;
if (begin_byte >= end_byte)
if (begin_byte >= end_byte) // 0-byte file
{
return { begin_block, begin_block };
return { begin_block, begin_block + 1 };
}
auto const final_block = tor->byteLoc(end_byte - 1).block;