summaryrefslogtreecommitdiff
blob: 77c078c8f769ee27da4226cf41cf855895acc5e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Index: libgamin/gam_fork.c
===================================================================
RCS file: /cvs/gnome/gamin/libgamin/gam_fork.c,v
retrieving revision 1.11
diff -u -p -r1.11 gam_fork.c
--- libgamin/gam_fork.c	27 Oct 2005 10:58:50 -0000	1.11
+++ libgamin/gam_fork.c	22 Aug 2006 14:59:11 -0000
@@ -67,6 +67,7 @@ gamin_fork_server(const char *fam_client
     /* Become a daemon */
     pid = fork();
     if (pid == 0) {
+	int fd;
         long open_max;
 	long i;
 
@@ -75,6 +76,20 @@ gamin_fork_server(const char *fam_client
 	for (i = 0; i < open_max; i++)
 	    fcntl (i, F_SETFD, FD_CLOEXEC);
 
+	/* /dev/null for stdin, stdout, stderr */
+	fd = open ("/dev/null", O_RDONLY);
+	if (fd != -1) {
+	    dup2 (fd, 0);
+	    close (fd);
+	}
+	
+	fd = open ("/dev/null", O_WRONLY);
+	if (fd != -1) {
+	    dup2 (fd, 1);
+	    dup2 (fd, 2);
+	    close (fd);
+	}
+	
         setsid();
         if (fork() == 0) {
 #ifdef HAVE_SETENV