]> git.ipfire.org Git - thirdparty/public-inbox.git/commitdiff
spawn: use readline instead of read for scalar redirects
authorEric Wong <e@80x24.org>
Sat, 28 Oct 2023 09:12:43 +0000 (09:12 +0000)
committerEric Wong <e@80x24.org>
Sat, 28 Oct 2023 17:35:42 +0000 (17:35 +0000)
Using `-s $fh' as the length arg for `read' is incorrect for
:utf8 and other non-:raw file handles because `read' operates
in *characters*, not bytes.

lib/PublicInbox/Spawn.pm

index 8382c4d208064c582b9431c153704546253a752b..e7d2c6ea817203e9c8df5253c1067468e2dba752 100644 (file)
@@ -22,7 +22,7 @@ use Carp qw(croak);
 use PublicInbox::ProcessIO;
 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 read seek sysseek truncate);
+use autodie qw(open pipe seek sysseek truncate);
 
 BEGIN {
        my $all_libc = <<'ALL_LIBC'; # all *nix systems we support
@@ -390,10 +390,12 @@ sub popen_wr {
 
 sub read_out_err ($) {
        my ($opt) = @_;
+       local $/;
        for my $fd (1, 2) { # read stdout/stderr
                my $fh = delete($opt->{"fh.$fd"}) // next;
                seek($fh, 0, SEEK_SET);
-               read($fh, ${$opt->{$fd}}, -s $fh, length(${$opt->{$fd}} // ''));
+               ${$opt->{$fd}} .= <$fh>;
+               $fh->error and croak "E: read(FD=$fd): $!";
        }
 }