From 5b286399039d00d4f7db302ba00dda79d60733d2 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Mon, 23 Jan 2023 12:30:33 +0000 Subject: bugfix: s6net_ident_reply_get uninitialized variable Thanks hurufu. Signed-off-by: Laurent Bercot --- AUTHORS | 1 + src/libs6net/s6net_ident_reply_get.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/AUTHORS b/AUTHORS index 5c0f4f3..07ac7ed 100644 --- a/AUTHORS +++ b/AUTHORS @@ -16,3 +16,4 @@ Thanks to: Colin Booth Amitai Schleier Petr Vaněk + Alex Grabowski diff --git a/src/libs6net/s6net_ident_reply_get.c b/src/libs6net/s6net_ident_reply_get.c index 9093700..3f1ab41 100644 --- a/src/libs6net/s6net_ident_reply_get.c +++ b/src/libs6net/s6net_ident_reply_get.c @@ -14,7 +14,7 @@ ssize_t s6net_ident_reply_get (char *s, ip46 const *remoteip, uint16_t remoteport, ip46 const *localip, uint16_t localport, tain const *deadline, tain *stamp) { - size_t len ; + size_t len = 0 ; int fd ; if (ip46_is6(remoteip) != ip46_is6(localip)) return (errno = EAFNOSUPPORT, -1) ; fd = socket_tcp46(ip46_is6(remoteip)) ; -- cgit v1.3.1