aboutsummaryrefslogtreecommitdiff
path: root/utils.c
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2023-12-07 09:54:48 +0100
committerToni Uhlig <matzeton@googlemail.com>2023-12-07 10:00:25 +0100
commit142a435bf64540c63fef67c4a44358eb50922868 (patch)
treeaf905a1ba2ab673bfcb812c7f3de9874ac23dc9f /utils.c
parentf5c5bc88a7154db3ef6c1f50f59ffe62e6d2f447 (diff)
Add InfluxDB push daemon.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'utils.c')
-rw-r--r--utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils.c b/utils.c
index e54386cd0..a635a87e4 100644
--- a/utils.c
+++ b/utils.c
@@ -208,7 +208,7 @@ int daemonize_shutdown(char const * const pidfile)
{
if (daemonize != 0)
{
- if (unlink(pidfile) != 0 && errno != ENOENT)
+ if (pidfile != NULL && unlink(pidfile) != 0 && errno != ENOENT)
{
logger(1, "Could not unlink pidfile %s: %s", pidfile, strerror(errno));
return 1;