about summary refs log tree commit homepage
path: root/lib/PublicInbox/LeiToMail.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2021-02-23 03:38:22 +0600
committerEric Wong <e@80x24.org>2021-02-24 11:12:57 +0000
commit2d22af21032993d641554e6157166cb2a3c6f57b (patch)
treed3beafd0e436c47e3e34c85762ea15bb867a00ec /lib/PublicInbox/LeiToMail.pm
parente01fe4f05196b56775fffffe23572ec648b14ec6 (diff)
downloadpublic-inbox-2d22af21032993d641554e6157166cb2a3c6f57b.tar.gz
We already localize %ENV before calling dispatch(), so
it's needless overhead in spawn() to be checking env for
undef values in those cases.
Diffstat (limited to 'lib/PublicInbox/LeiToMail.pm')
-rw-r--r--lib/PublicInbox/LeiToMail.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/PublicInbox/LeiToMail.pm b/lib/PublicInbox/LeiToMail.pm
index 4f8706e7..630da67c 100644
--- a/lib/PublicInbox/LeiToMail.pm
+++ b/lib/PublicInbox/LeiToMail.pm
@@ -218,7 +218,7 @@ sub _post_augment_mbox { # open a compressor process
         my $cmd = zsfx2cmd($zsfx, undef, $lei);
         my ($r, $w) = @{delete $lei->{zpipe}};
         my $rdr = { 0 => $r, 1 => $lei->{1}, 2 => $lei->{2} };
-        my $pid = spawn($cmd, $lei->{env}, $rdr);
+        my $pid = spawn($cmd, undef, $rdr);
         my $pp = gensym;
         my $dup = bless { "pid.$pid" => $cmd }, ref($lei);
         $dup->{$_} = $lei->{$_} for qw(2 sock);
@@ -231,7 +231,7 @@ sub _post_augment_mbox { # open a compressor process
 sub decompress_src ($$$) {
         my ($in, $zsfx, $lei) = @_;
         my $cmd = zsfx2cmd($zsfx, 1, $lei);
-        popen_rd($cmd, $lei->{env}, { 0 => $in, 2 => $lei->{2} });
+        popen_rd($cmd, undef, { 0 => $in, 2 => $lei->{2} });
 }
 
 sub dup_src ($) {