From 3c298b98ce92a69573241c87846a1a7610ce68e4 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 ebc39386..a9aa070a 100644 --- a/proc.c +++ b/proc.c @@ -282,6 +282,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);