Skip to content

Commit

Permalink
strict had allowed list-deref of undef in replyCC()
Browse files Browse the repository at this point in the history
  • Loading branch information
mknos authored Nov 19, 2024
1 parent cb4e3ae commit 46d44bf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions bin/mail
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,6 @@ package main;
use English;
use File::Temp;
use Getopt::Std;
#use vars qw($VERSION $ROWS $BUFFERL $box);
use vars qw($opt_f $opt_s $opt_c $opt_b $opt_v);

our $VERSION = '0.04';
Expand Down Expand Up @@ -725,7 +724,7 @@ sub replyCC {
}
push @replies, $original->get_from;
$tc = $original->get_cc;
push(@ccaddrs, @$tc);
push(@ccaddrs, @$tc) if $tc;
}

my $msg=message->new;
Expand Down

0 comments on commit 46d44bf

Please sign in to comment.