Merge branch 'main' into fix/bd68d3a-final-info-hash-in-makemeta
This commit is contained in:
commit
5842e8bc74
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue