mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
connection queue fix
This commit is contained in:
parent
f80f499135
commit
371b18d855
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@ namespace libtorrent
|
|||
ptime next_expire = max_time();
|
||||
ptime now = time_now();
|
||||
for (std::list<entry>::iterator i = m_queue.begin();
|
||||
i != m_queue.end();)
|
||||
!m_queue.empty() && i != m_queue.end();)
|
||||
{
|
||||
if (i->connecting && i->expires < now)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue