chiark / gitweb /
activate: fix fd leak in do_accept()
[elogind.git] / src / activate / activate.c
index 89427738663de4ed8a8e438647b8bf8f810ed3eb..0a1df37f353d8e9e72bbcc85f8335de4faac04bb 100644 (file)
@@ -242,7 +242,7 @@ static int launch1(const char* child, char** argv, char **env, int fd) {
 
 static int do_accept(const char* name, char **argv, char **envp, int fd) {
         _cleanup_free_ char *local = NULL, *peer = NULL;
-        int fd2;
+        _cleanup_close_ int fd2 = -1;
 
         fd2 = accept(fd, NULL, NULL);
         if (fd2 < 0) {