]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/GitCatFile.pm
update copyright headers and email addresses
[public-inbox.git] / lib / PublicInbox / GitCatFile.pm
index 9bffce2aa2a727db21e1e42431dafc66310133c2..4f16762e56c8959eaaed4c7d91d3a7e647f7e729 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2014, Eric Wong <normalperson@yhbt.net> and all contributors
+# Copyright (C) 2014-2015 all contributors <meta@public-inbox.org>
 # License: GPLv2 or later (https://www.gnu.org/licenses/gpl-2.0.txt)
 # This is based on code in Git.pm which is GPLv2, but modified to avoid
 # dependence on environment variables for compatibility with mod_perl.
@@ -6,7 +6,6 @@
 package PublicInbox::GitCatFile;
 use strict;
 use warnings;
-use Fcntl qw(F_GETFD F_SETFD FD_CLOEXEC);
 use POSIX qw(dup2);
 
 sub new {
@@ -14,21 +13,13 @@ sub new {
        bless { git_dir => $git_dir }, $class;
 }
 
-sub set_cloexec {
-       my ($fh) = @_;
-       my $flags = fcntl($fh, F_GETFD, 0) or die "fcntl(F_GETFD): $!\n";
-       fcntl($fh, F_SETFD, $flags | FD_CLOEXEC) or die "fcntl(F_SETFD): $!\n";
-}
-
 sub _cat_file_begin {
        my ($self) = @_;
        return if $self->{pid};
        my ($in_r, $in_w, $out_r, $out_w);
 
        pipe($in_r, $in_w) or die "pipe failed: $!\n";
-       set_cloexec($_) foreach ($in_r, $in_w);
        pipe($out_r, $out_w) or die "pipe failed: $!\n";
-       set_cloexec($_) foreach ($out_r, $out_w);
 
        my @cmd = ('git', "--git-dir=$self->{git_dir}", qw(cat-file --batch));
        my $pid = fork;