From: Ævar Arnfjörð Bjarmason Date: Thu, 30 Sep 2010 13:42:54 +0000 (+0000) Subject: send-email: use lexical filehandle for opendir X-Git-Tag: v1.7.4-rc0~160^2~15 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=c6038169a77854c26536f1c95176cbeb237e9e11;p=git.git send-email: use lexical filehandle for opendir Signed-off-by: Ævar Arnfjörð Bjarmason Reviewed-by: Jeff King > Signed-off-by: Junio C Hamano --- diff --git a/git-send-email.perl b/git-send-email.perl index 8cc416115..2f18d8307 100755 --- a/git-send-email.perl +++ b/git-send-email.perl @@ -512,12 +512,12 @@ while (defined(my $f = shift @ARGV)) { push @rev_list_opts, "--", @ARGV; @ARGV = (); } elsif (-d $f and !check_file_rev_conflict($f)) { - opendir(DH,$f) + opendir my $dh, $f or die "Failed to opendir $f: $!"; push @files, grep { -f $_ } map { catfile($f, $_) } - sort readdir(DH); - closedir(DH); + sort readdir $dh; + closedir $dh; } elsif ((-f $f or -p $f) and !check_file_rev_conflict($f)) { push @files, $f; } else {