diff --git a/limelight-common/PlatformSockets.c b/limelight-common/PlatformSockets.c index bc0e8bb..9b51e13 100644 --- a/limelight-common/PlatformSockets.c +++ b/limelight-common/PlatformSockets.c @@ -88,6 +88,7 @@ int initializePlatformSockets(void) { // Disable SIGPIPE signals to avoid us getting // killed when a socket gets an EPIPE error struct sigaction sa; + sigemptyset(&sa.sa_mask); sa.sa_handler = SIG_IGN; sa.sa_flags = 0; if (sigaction(SIGPIPE, &sa, 0) == -1) {