Coverity tool complains that exit() is not signal-safe and therefore should not be called from within a signal handler. Call _exit() instead. Signed-off-by: Phil Sutter <phil@xxxxxx> --- src/run.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/run.c b/src/run.c index f11a5327fe5e6..37a0eb1c6b957 100644 --- a/src/run.c +++ b/src/run.c @@ -67,7 +67,7 @@ void killer(int signo) close_log(); sd_ct_stop(); - exit(0); + _exit(0); } static void child(int foo) -- 2.34.1