diff options
author | Daniel Barkalow <barkalow@iabervon.org> | 2005-12-07 21:04:38 -0500 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-12-07 21:05:39 -0800 |
commit | 128aed684d0b3099092b7597c8644599b45b7503 (patch) | |
tree | 52e84bd6a1c9bf70ea8dc44f7759d93cd43f1283 /receive-pack.c | |
parent | 64224caf888253601b7285ab242f4a12779894b9 (diff) | |
download | git-128aed684d0b3099092b7597c8644599b45b7503.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/receive-pack.c b/receive-pack.c index 1873506120..cbe37e7239 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); } /* |