Merge branch 'main' into fix/bd68d3a-final-info-hash-in-makemeta

This commit is contained in:
Charles Kerr 2022-02-21 18:02:02 -06:00
commit 5842e8bc74
1 changed files with 2 additions and 2 deletions

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;