From 9774768b97c8ab432dfbf961f294f77fd2591822 Mon Sep 17 00:00:00 2001 From: "J. Alexander Treuman" Date: Tue, 18 Jul 2006 23:38:21 +0000 Subject: Initialize sigaction.sa_mask to an empty set in a few places we forgot to git-svn-id: https://svn.musicpd.org/mpd/trunk@4400 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/sig_handlers.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/sig_handlers.c') diff --git a/src/sig_handlers.c b/src/sig_handlers.c index a1bbb5379..7eab68b6f 100644 --- a/src/sig_handlers.c +++ b/src/sig_handlers.c @@ -125,6 +125,7 @@ void masterInitSigHandlers() { struct sigaction sa; sa.sa_flags = 0; + sigemptyset(&sa.sa_mask); sa.sa_handler = SIG_IGN; while(sigaction(SIGPIPE,&sa,NULL)<0 && errno==EINTR); sa.sa_handler = masterChldSigHandler; @@ -141,6 +142,7 @@ void initSigHandlers() { struct sigaction sa; sa.sa_flags = 0; + sigemptyset(&sa.sa_mask); sa.sa_handler = SIG_IGN; while(sigaction(SIGPIPE,&sa,NULL)<0 && errno==EINTR); sa.sa_handler = chldSigHandler; @@ -165,6 +167,7 @@ void setSigHandlersForDecoder() { finishSigHandlers(); sa.sa_flags = 0; + sigemptyset(&sa.sa_mask); sa.sa_handler = SIG_IGN; while(sigaction(SIGHUP,&sa,NULL)<0 && errno==EINTR); while(sigaction(SIGINT,&sa,NULL)<0 && errno==EINTR); -- cgit v1.2.3