summaryrefslogtreecommitdiff
path: root/receive-pack.c
diff options
context:
space:
mode:
authorDaniel Barkalow <barkalow@iabervon.org>2005-12-08 02:04:38 (GMT)
committerJunio C Hamano <junkio@cox.net>2005-12-08 05:05:39 (GMT)
commit128aed684d0b3099092b7597c8644599b45b7503 (patch)
tree52e84bd6a1c9bf70ea8dc44f7759d93cd43f1283 /receive-pack.c
parent64224caf888253601b7285ab242f4a12779894b9 (diff)
downloadgit-128aed684d0b3099092b7597c8644599b45b7503.zip
git-128aed684d0b3099092b7597c8644599b45b7503.tar.gz
git-128aed684d0b3099092b7597c8644599b45b7503.tar.bz2
Clean up file descriptors when calling hooks.
When calling post-update hook, don't leave stdin and stdout connected to the pushing connection. Signed-off-by: Daniel Barkalow <barkalow@iabervon.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'receive-pack.c')
-rw-r--r--receive-pack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/receive-pack.c b/receive-pack.c
index 1873506..cbe37e7 100644
--- a/receive-pack.c
+++ b/receive-pack.c
@@ -173,7 +173,7 @@ static void run_update_post_hook(struct command *cmd)
argc++;
}
argv[argc] = NULL;
- run_command_v(argc, argv);
+ run_command_v_opt(argc, argv, RUN_COMMAND_NO_STDIO);
}
/*