X-Git-Url: https://git.octo.it/?p=rrdtool.git;a=blobdiff_plain;f=src%2Frrd_daemon.c;h=f997d3ceddbd4060add089914cf95b80b86b3fcf;hp=53904a331357b2d0a745bb625249191cb26f28c4;hb=6c93a9ce3e712cde90088ab872cec79bdbb616da;hpb=9e56458803c05e1b98591818412a08ffcf3f0401 diff --git a/src/rrd_daemon.c b/src/rrd_daemon.c index 53904a3..f997d3c 100644 --- a/src/rrd_daemon.c +++ b/src/rrd_daemon.c @@ -379,7 +379,13 @@ static int check_pidfile(void) } lseek(pid_fd, 0, SEEK_SET); - ftruncate(pid_fd, 0); + if (ftruncate(pid_fd, 0) == -1) + { + fprintf(stderr, + "FATAL: Faild to truncate stale PID file. (pid %d)\n", pid); + close(pid_fd); + return -1; + } fprintf(stderr, "rrdcached: removed stale PID file (no rrdcached on pid %d)\n" @@ -2446,8 +2452,9 @@ static int daemonize (void) /* {{{ */ close (0); open ("/dev/null", O_RDWR); - dup (0); - dup (0); + if (dup(0) == -1 || dup(0) == -1){ + RRDD_LOG (LOG_ERR, "faild to run dup.\n"); + } } /* if (!stay_foreground) */ /* Change into the /tmp directory. */