fixed bug in storage
This commit is contained in:
parent
f85873263b
commit
c9267431b9
|
@ -1248,7 +1248,7 @@ namespace libtorrent
|
||||||
, block_size);
|
, block_size);
|
||||||
crc.update(&buf[0], block_size);
|
crc.update(&buf[0], block_size);
|
||||||
}
|
}
|
||||||
if (bi[num_blocks - 1].state == piece_picker::block_info::state_finished)
|
if (num_blocks > 0 && bi[num_blocks - 1].state == piece_picker::block_info::state_finished)
|
||||||
{
|
{
|
||||||
m_storage->read(
|
m_storage->read(
|
||||||
&buf[0]
|
&buf[0]
|
||||||
|
|
Loading…
Reference in New Issue