http://bugzilla.spamassassin.org/show_bug.cgi?id=4185





------- Additional Comments From [EMAIL PROTECTED]  2005-03-11 01:05 -------
While we're are at it, apply this patch as well.

2005-03-11  Jari Aalto  <jari aalto A T cante.net>

        * ArchiveIterator.pm (scan_file):  Check NULL $mail
        argument before proceeding. 

--- ArchiveIterator.pm  2005/03/11 08:58:33     1.2
+++ ArchiveIterator.pm  2005/03/11 09:06:35     1.3
@@ -660,6 +660,11 @@
 sub scan_file {
   my ($self, $class, $mail) = @_;
 
+  unless ( $mail ) {
+      warn "scan_file() received NULL \$mail argument";
+      return;
+  }
+
   if ($self->{opt_n}) {
     $self->{$class}->{index_pack($class, "f", $no, $mail)} = $no;
     $no++;




------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

Reply via email to