use PublicInbox::Compat qw(uniqstr);
use PublicInbox::Aspawn qw(run_await);
use Carp ();
-use autodie qw(pipe open sysread seek sysseek send);
+use autodie qw(close pipe open sysread seek sysseek send);
our $DO_QUIT = 15; # signal number
our (
$LIVE_JOBS, # integer
my $roots_fh = delete $repo->{roots_fh} // die 'BUG: no {roots_fh}';
seek($roots_fh, 0, SEEK_SET);
chomp(my @roots = <$roots_fh>);
- close($roots_fh);
+ $roots_fh = eof($roots_fh) | close $roots_fh; # detect readline errors
if (!@roots) {
warn("E: $git->{git_dir} has no root commits\n");
return index_next($self);
use IO::Handle; # autoflush
use PublicInbox::Git;
use PublicInbox::Lock;
+use autodie qw(close);
BEGIN {
use autodie;
# See https://bugs.debian.org/975607
if (open(my $fh, '<', "$objdir/info/alternates")) {
chomp(my @abs_alt = grep(m!^/!, <$fh>));
+ $fh = eof($fh) | close $fh; # detect readline errors
$gcf2->add_alternate($_) for @abs_alt;
}
$gcf2->add_alternate($objdir);
sub input_fh {
my ($self, $ifmt, $fh, $name, @args) = @_;
if ($ifmt eq 'eml') {
- my $buf = do { local $/; <$fh> } //
+ my $buf = do { local $/; <$fh> };
+ (defined($buf) && eof($fh) && close($fh)) or
return $self->{lei}->child_error(0, <<"");
error reading $name: $!
seek($srcfh, 0, SEEK_SET);
seek($dstfh, 0, SEEK_SET);
my %src = map { chomp; split(/\0/) } (<$srcfh>);
- close $srcfh;
my %dst = map { chomp; split(/\0/) } (<$dstfh>);
- close $dstfh;
+ $srcfh = eof($srcfh) | close $srcfh; # detects readline errors
+ $dstfh = eof($dstfh) | close $dstfh; # ditto
my $w = start_update_ref($fgrp) or return;
my $lei = $fgrp->{lei};
my $ndel;
use PublicInbox::IO;
our @EXPORT_OK = qw(which spawn popen_rd popen_wr run_die run_wait run_qx);
our @RLIMITS = qw(RLIMIT_CPU RLIMIT_CORE RLIMIT_DATA);
-use autodie qw(open pipe seek sysseek truncate);
+use autodie qw(close open pipe seek sysseek truncate);
BEGIN {
my $all_libc = <<'ALL_LIBC'; # all *nix systems we support
my $dst = $opt->{$fd};
$dst = $opt->{$fd} = $dst->[1] if ref($dst) eq 'ARRAY';
$$dst .= <$fh>;
- $fh->error and croak "E: read(FD=$fd): $!";
+ $fh = eof($fh) | close $fh; # detects readline errors
}
}