diff options
-rw-r--r-- | lib/lib.c | 13 | ||||
-rw-r--r-- | lib/portability.c | 6 |
2 files changed, 8 insertions, 11 deletions
@@ -890,18 +890,15 @@ void exit_signal(int sig) // adds the handlers to a list, to be called in order. void sigatexit(void *handler) { - xsignal_all_killers(handler ? exit_signal : SIG_DFL); + struct arg_list *al = 0; + xsignal_all_killers(handler ? exit_signal : SIG_DFL); if (handler) { - struct arg_list *al = xmalloc(sizeof(struct arg_list)); - + al = xmalloc(sizeof(struct arg_list)); al->next = toys.xexit; al->arg = handler; - toys.xexit = al; - } else { - llist_traverse(toys.xexit, free); - toys.xexit = 0; - } + } else llist_traverse(toys.xexit, free); + toys.xexit = al; } // Output a nicely formatted 80-column table of all the signals. diff --git a/lib/portability.c b/lib/portability.c index 26b854d6..8b8f0f3b 100644 --- a/lib/portability.c +++ b/lib/portability.c @@ -452,9 +452,9 @@ void xsignal_all_killers(void *handler) { int i; - for (i=0; signames[i].num != SIGCHLD; i++) - if (signames[i].num != SIGKILL) - xsignal(signames[i].num, handler ? exit_signal : SIG_DFL); + if (!handler) handler = SIG_DFL; + for (i = 0; signames[i].num != SIGCHLD; i++) + if (signames[i].num != SIGKILL) xsignal(signames[i].num, handler); } // Convert a string like "9", "KILL", "SIGHUP", or "SIGRTMIN+2" to a number. |