]> git.ipfire.org Git - thirdparty/git.git/commit - daemon.c
daemon: use cld->env_array when re-spawning
authorJeff King <peff@peff.net>
Thu, 24 Sep 2015 21:08:00 +0000 (17:08 -0400)
committerJunio C Hamano <gitster@pobox.com>
Mon, 5 Oct 2015 18:08:05 +0000 (11:08 -0700)
commitf063d38b808e184675e5b0931ea0167a013b3fcb
treec5d8af0937956b040451609dd31e301f17a8b823
parent0b282cc4b2ceaf2f7f3376f0303f63e9d02fdc91
daemon: use cld->env_array when re-spawning

This avoids an ugly strcat into a fixed-size buffer. It's
not wrong (the buffer is plenty large enough for an IPv6
address plus some minor formatting), but it takes some
effort to verify that.

Unfortunately we are still stuck with some fixed-size
buffers to hold the output of inet_ntop. But at least we now
pass very easy-to-verify parameters, rather than doing a
manual computation to account for other data in the buffer.

As a side effect, this also fixes the case where we might
pass an uninitialized portbuf buffer through the
environment. This probably couldn't happen in practice, as
it would mean that addr->sa_family was neither AF_INET nor
AF_INET6 (and that is all we are listening on).

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
daemon.c