From: Bob Weinand Date: Thu, 23 Jul 2015 12:26:50 +0000 (+0200) Subject: Fix valgrind warning with sigaction X-Git-Tag: php-7.0.0beta3~5^2~99^2~6 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6704d8d421c2148e2d9f65122e9561eb1e0d9ed1;p=php Fix valgrind warning with sigaction --- 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