From 31ed29e5511958845fabc66a479eeec39c1836bd Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 26 Oct 2020 19:00:37 +0000 Subject: [PATCH] SIGQUIT handler needs to be cleared before fork like the others, reported by Simon Andersson. --- proc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/proc.c b/proc.c index c0e2f55b..ff011565 100644 --- a/proc.c +++ b/proc.c @@ -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);