Przeglądaj źródła

Fix an unsafe loop.

master
Richard Nyberg 19 lat temu
rodzic
commit
7a5d04eed4
1 zmienionych plików z 4 dodań i 2 usunięć
  1. +4
    -2
      btpd/upload.c

+ 4
- 2
btpd/upload.c Wyświetl plik

@@ -42,10 +42,12 @@ ul_on_lost_peer(struct peer *p)
void
ul_on_lost_torrent(struct torrent *tp)
{
struct peer *p;
BTPDQ_FOREACH(p, &tp->peers, p_entry) {
struct peer *p = BTPDQ_FIRST(&m_peerq);
while (p != NULL) {
struct peer *next = BTPDQ_NEXT(p, p_entry);
BTPDQ_REMOVE(&m_peerq, p, ul_entry);
m_npeers--;
p = next;
}
choke_do();
}


Ładowanie…
Anuluj
Zapisz