forked from premiere/premiere-libtorrent
fixed incorrect assert
This commit is contained in:
parent
a09159c239
commit
b80c8720e3
|
@ -374,7 +374,7 @@ namespace libtorrent
|
||||||
{
|
{
|
||||||
torrent::peer_iterator i = m_torrent->m_connections.find(
|
torrent::peer_iterator i = m_torrent->m_connections.find(
|
||||||
get_socket()->sender());
|
get_socket()->sender());
|
||||||
assert(i != m_torrent->m_connections.end());
|
assert(i == m_torrent->m_connections.end());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue