Properly initialize sigaction struct
The code in handle_signal() wasn't clearing the struct sigaction before passing it to sigaction(). This meant that we would block a random set of signals while executing the default handler, or jump to the uninitialized __sa_sigaction__ (instead of sa_handler). Initialize properly as we do in setup_signal_handler().
This commit is contained in:
parent
4dca8e6e0b
commit
92b8196192
|
@ -305,6 +305,8 @@ void handle_signal(int sig, siginfo_t *info, void *data) {
|
|||
|
||||
struct sigaction action;
|
||||
action.sa_handler = SIG_DFL;
|
||||
action.sa_flags = 0;
|
||||
sigemptyset(&action.sa_mask);
|
||||
sigaction(sig, &action, NULL);
|
||||
raised_signal = sig;
|
||||
|
||||
|
|
Loading…
Reference in New Issue