forked from premiere/premiere-libtorrent
fixed assert
This commit is contained in:
parent
d45e6cb118
commit
6b4fcfcd38
|
@ -1977,7 +1977,7 @@ namespace libtorrent
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
TORRENT_ASSERT(int(m_download_queue.size()) > block_index + 1);
|
TORRENT_ASSERT(int(m_download_queue.size()) > block_index);
|
||||||
b = m_download_queue.begin() + block_index;
|
b = m_download_queue.begin() + block_index;
|
||||||
TORRENT_ASSERT(*b == pending_b);
|
TORRENT_ASSERT(*b == pending_b);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue