From eac0ba7fc193cceccd953bc4726ceef750b18085 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marcin=20=C5=9Alusarz?= Date: Fri, 24 Jul 2020 17:51:25 +0200 Subject: [PATCH] util: fix possible fd leaks in os_socket_listen_abstract MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Found by Coverity. Signed-off-by: Marcin Ślusarz Fixes: ef5266ebd50 ("util/os_socket: Add socket related functions.") Reviewed-by: Marek Olšák Part-of: --- src/util/os_socket.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/util/os_socket.c b/src/util/os_socket.c index 98ef013205e..6562cccaddd 100644 --- a/src/util/os_socket.c +++ b/src/util/os_socket.c @@ -33,10 +33,15 @@ os_socket_listen_abstract(const char *path, int count) int ret = bind(s, (struct sockaddr*)&addr, offsetof(struct sockaddr_un, sun_path) + strlen(path) + 1); - if (ret < 0) + if (ret < 0) { + close(s); return -1; + } - listen(s, count); + if (listen(s, count) < 0) { + close(s); + return -1; + } return s; } -- 2.30.2