diff options
author | nicm <nicm> | 2020-10-26 19:00:37 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-10-26 19:00:37 +0000 |
commit | 31ed29e5511958845fabc66a479eeec39c1836bd (patch) | |
tree | 6d06599fa5c913808da5191d961630e9144b39bd | |
parent | d8cda9286ff1157ed46126bc4a797b08bb9436ae (diff) | |
download | rtmux-31ed29e5511958845fabc66a479eeec39c1836bd.tar.gz rtmux-31ed29e5511958845fabc66a479eeec39c1836bd.tar.bz2 rtmux-31ed29e5511958845fabc66a479eeec39c1836bd.zip |
SIGQUIT handler needs to be cleared before fork like the others,
reported by Simon Andersson.
-rw-r--r-- | proc.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -270,6 +270,7 @@ proc_clear_signals(struct tmuxproc *tp, int defaults) if (defaults) { sigaction(SIGINT, &sa, NULL); + sigaction(SIGQUIT, &sa, NULL); sigaction(SIGHUP, &sa, NULL); sigaction(SIGCHLD, &sa, NULL); sigaction(SIGCONT, &sa, NULL); |