From 6704d8d421c2148e2d9f65122e9561eb1e0d9ed1 Mon Sep 17 00:00:00 2001 From: Bob Weinand Date: Thu, 23 Jul 2015 14:26:50 +0200 Subject: Fix valgrind warning with sigaction --- sapi/phpdbg/phpdbg.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sapi/phpdbg/phpdbg.c') diff --git a/sapi/phpdbg/phpdbg.c b/sapi/phpdbg/phpdbg.c index a4f36eeced..ad61cba6c9 100644 --- a/sapi/phpdbg/phpdbg.c +++ b/sapi/phpdbg/phpdbg.c @@ -1343,9 +1343,10 @@ int main(int argc, char **argv) /* {{{ */ struct sigaction signal_struct; signal_struct.sa_sigaction = phpdbg_signal_handler; signal_struct.sa_flags = SA_SIGINFO | SA_NODEFER; + signal_struct.sa_mask = 0; sigio_struct.sa_sigaction = phpdbg_sigio_handler; sigio_struct.sa_flags = SA_SIGINFO; - + sigio_struct.sa_mask = 0; address = strdup("127.0.0.1"); #endif -- cgit v1.2.1