Fix for bug 78407: extra safeguard against overpopping the email list when pruning people who aren't supposed to get mail.

Patch by Jake Steenhagen <jake@acutex.net>
r= justdave@syndicomm.com
This commit is contained in:
justdave%syndicomm.com 2001-06-02 03:19:26 +00:00
Родитель f845d14816
Коммит 46f339c5a5
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -329,6 +329,7 @@ sub filterExcludeList ($$) {
# match found, so we remove the entry
if ($included eq $excluded) {
pop(@result);
last;
}
}
}