summaryrefslogtreecommitdiff
path: root/transport-helper.c
diff options
context:
space:
mode:
authorRené Scharfe <l.s.r@web.de>2014-10-28 20:52:34 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-10-28 21:56:17 (GMT)
commit8828f2985f1967201c256fb01f92a91acfdb5001 (patch)
tree01bf1d97fa987db525a13283437230c857093762 /transport-helper.c
parentfbecd99861ea5795aeba46faf2ac7a8c1b70d485 (diff)
downloadgit-8828f2985f1967201c256fb01f92a91acfdb5001.zip
git-8828f2985f1967201c256fb01f92a91acfdb5001.tar.gz
git-8828f2985f1967201c256fb01f92a91acfdb5001.tar.bz2
use child_process_init() to initialize struct child_process variables
Call child_process_init() instead of zeroing the memory of variables of type struct child_process by hand before use because the former is both clearer and shorter. Signed-off-by: Rene Scharfe <l.s.r@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'transport-helper.c')
-rw-r--r--transport-helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/transport-helper.c b/transport-helper.c
index 6cd9dd1..0224687 100644
--- a/transport-helper.c
+++ b/transport-helper.c
@@ -414,7 +414,7 @@ static int get_exporter(struct transport *transport,
struct child_process *helper = get_helper(transport);
int i;
- memset(fastexport, 0, sizeof(*fastexport));
+ child_process_init(fastexport);
/* we need to duplicate helper->in because we want to use it after
* fastexport is done with it. */