From 3c2b3777115f3e929821058f454e7a369b260898 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Fri, 18 Dec 2015 01:05:12 +0200 Subject: [PATCH] unix/unix_mphal: Just consistently set sigaction.sa_flags to 0. --- unix/unix_mphal.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/unix/unix_mphal.c b/unix/unix_mphal.c index 523e34dd8d..dbb6fbcdd4 100644 --- a/unix/unix_mphal.c +++ b/unix/unix_mphal.c @@ -53,7 +53,7 @@ void mp_hal_set_interrupt_char(char c) { #ifndef _WIN32 // enable signal handler struct sigaction sa; - memset(&sa, 0, sizeof(sa)); + sa.sa_flags = 0; sa.sa_handler = sighandler; sigemptyset(&sa.sa_mask); sigaction(SIGINT, &sa, NULL); @@ -62,6 +62,7 @@ void mp_hal_set_interrupt_char(char c) { #ifndef _WIN32 // disable signal handler struct sigaction sa; + sa.sa_flags = 0; sa.sa_handler = SIG_DFL; sigemptyset(&sa.sa_mask); sigaction(SIGINT, &sa, NULL);