aboutsummaryrefslogtreecommitdiff
path: root/utils.c
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2020-08-06 00:50:02 +0200
committerToni Uhlig <matzeton@googlemail.com>2020-08-06 00:50:02 +0200
commit5a7b0499edb7c4763f8afdd093b3d240271f5de7 (patch)
tree473bf4355dd4d25a62f69cbfafcd99f136f3e324 /utils.c
parent6031b07eb4f50af49bcd99951a28bd63dbf1c5b6 (diff)
nDPIsrvd sighandler and cmd opt parser
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'utils.c')
-rw-r--r--utils.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/utils.c b/utils.c
index 60efe39c7..a6797f24a 100644
--- a/utils.c
+++ b/utils.c
@@ -28,6 +28,7 @@ static int is_daemon_running(char const * const pidfile, pid_str ps)
if (read(pfd, ps, sizeof(pid_str)) <= 0)
{
+ close(pfd);
return 1;
}
@@ -71,7 +72,7 @@ static int create_pidfile(char const * const pidfile)
int daemonize_with_pidfile(char const * const pidfile)
{
- pid_str ps;
+ pid_str ps = {};
if (daemonize != 0)
{