POP3Clinet: add missing iteration to next in linked list.
authorWilfried Goesgens <dothebart@citadel.org>
Fri, 22 Feb 2013 11:50:20 +0000 (12:50 +0100)
committerWilfried Goesgens <dothebart@citadel.org>
Fri, 22 Feb 2013 11:50:20 +0000 (12:50 +0100)
citadel/modules/pop3client/serv_pop3client.c

index ec744849f8af80e4d6aa4ff34015027349702995..29e6bcc4dcca500ed9de6d1a2521f7daf3c62a4c 100644 (file)
@@ -1083,6 +1083,7 @@ void pop3client_scan_room(struct ctdlroom *qrbuf, void *data, OneRoomNetCfg *One
                    DeletePOP3Aggregator);
 
                pthread_mutex_unlock(&POP3QueueMutex);
+               pLine = pLine->next;
 
        }
 }