git send-email: avoid leaking directory file descriptors.

Signed-off-by: Pierre Habouzit <madcoder@debian.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Pierre Habouzit 2008-10-31 18:57:10 +00:00 коммит произвёл Junio C Hamano
Родитель 30affa1e9a
Коммит 8c17868795
1 изменённых файлов: 1 добавлений и 2 удалений

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

@ -407,10 +407,9 @@ for my $f (@ARGV) {
push @files, grep { -f $_ } map { +$f . "/" . $_ }
sort readdir(DH);
closedir(DH);
} elsif (-f $f or -p $f) {
push @files, $f;
} else {
print STDERR "Skipping $f - not found.\n";
}