From 85c414b5e05d2087e779cdd3587d6ad4cae56e72 Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Wed, 13 Jul 2005 19:40:06 -0700 Subject: [PATCH] git-fetch-pack: close output fd after dup'ing the input With the socket case, the input and output fd's might end up being the same, so we want to dup the other before we close either of them. --- fetch-pack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fetch-pack.c b/fetch-pack.c index ec5bad89c..3475ea380 100644 --- a/fetch-pack.c +++ b/fetch-pack.c @@ -95,9 +95,9 @@ static int fetch_pack(int fd[2], int nr_match, char **match) if (pid < 0) die("git-fetch-pack: unable to fork off git-unpack-objects"); if (!pid) { - close(fd[1]); dup2(fd[0], 0); close(fd[0]); + close(fd[1]); execlp("git-unpack-objects", "git-unpack-objects", NULL); die("git-unpack-objects exec failed"); } -- 2.45.2