]> git.sur5r.net Git - i3/i3/commitdiff
set close-on-exec flag on errorlogfile
authorMichael Walle <michael@walle.cc>
Sat, 1 Oct 2011 00:29:30 +0000 (02:29 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Sat, 1 Oct 2011 16:44:22 +0000 (17:44 +0100)
Make sure the file descriptor is closed within the child after forking.

Signed-off-by: Michael Walle <michael@walle.cc>
src/log.c

index d424ffd3261b0c97bdf824c49249e993ccc12275..5e1c35eb455c42d1ff8112c824c8bc3362066c70 100644 (file)
--- a/src/log.c
+++ b/src/log.c
@@ -16,6 +16,8 @@
 #include <stdbool.h>
 #include <stdlib.h>
 #include <sys/time.h>
+#include <unistd.h>
+#include <fcntl.h>
 
 #include "util.h"
 #include "log.h"
@@ -41,6 +43,9 @@ void init_logging() {
     }
 
     errorfile = fopen(errorfilename, "w");
+    if (fcntl(fileno(errorfile), F_SETFD, FD_CLOEXEC)) {
+        ELOG("Could not set close-on-exec flag\n");
+    }
 }
 
 /*