]> git.ipfire.org Git - thirdparty/git.git/commitdiff
daemon: guard NULL REMOTE_PORT in execute() logging
authorSebastien Tardif <sebtardif@ncf.ca>
Thu, 28 May 2026 02:56:56 +0000 (02:56 +0000)
committerJunio C Hamano <gitster@pobox.com>
Fri, 29 May 2026 05:25:41 +0000 (14:25 +0900)
REMOTE_ADDR and REMOTE_PORT are both set by the same code path in
handle(), so when the existing REMOTE_ADDR check passes, REMOTE_PORT
is guaranteed to be non-NULL.  Guard REMOTE_PORT as well so that a
future change that breaks this invariant does not pass NULL to
printf's %s, which is undefined behavior.

Signed-off-by: Sebastien Tardif <sebtardif@ncf.ca>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
daemon.c

index 103c08d868d5de434dfe900a8294de5b8eaa8995..78cca8673fdb341d41a38af80511ea258ee97808 100644 (file)
--- a/daemon.c
+++ b/daemon.c
@@ -753,7 +753,7 @@ static int execute(void)
        struct strvec env = STRVEC_INIT;
 
        if (addr)
-               loginfo("Connection from %s:%s", addr, port);
+               loginfo("Connection from %s:%s", addr, port ? port : "?");
 
        set_keep_alive(0);
        alarm(init_timeout ? init_timeout : timeout);