diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-08-06 00:50:02 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2020-08-06 00:50:02 +0200 |
commit | 5a7b0499edb7c4763f8afdd093b3d240271f5de7 (patch) | |
tree | 473bf4355dd4d25a62f69cbfafcd99f136f3e324 /utils.c | |
parent | 6031b07eb4f50af49bcd99951a28bd63dbf1c5b6 (diff) |
nDPIsrvd sighandler and cmd opt parser
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'utils.c')
-rw-r--r-- | utils.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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) { |