]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fix for bug 78407: extra safeguard against overpopping the email list when pruning...
authorjustdave%syndicomm.com <>
Sat, 2 Jun 2001 10:19:26 +0000 (10:19 +0000)
committerjustdave%syndicomm.com <>
Sat, 2 Jun 2001 10:19:26 +0000 (10:19 +0000)
Patch by Jake Steenhagen <jake@acutex.net>
r= justdave@syndicomm.com

processmail

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