mirror of
https://github.com/tmux/tmux.git
synced 2024-12-25 02:48:47 +00:00
Call closefrom after removing signals because newer libevent doesn't
like its signal fd being closed Azat Khuzhin.
This commit is contained in:
parent
43b841f188
commit
b7e22d00b4
2
spawn.c
2
spawn.c
@ -415,8 +415,8 @@ spawn_pane(struct spawn_context *sc, char **cause)
|
|||||||
_exit(1);
|
_exit(1);
|
||||||
|
|
||||||
/* Clean up file descriptors and signals and update the environment. */
|
/* Clean up file descriptors and signals and update the environment. */
|
||||||
closefrom(STDERR_FILENO + 1);
|
|
||||||
proc_clear_signals(server_proc, 1);
|
proc_clear_signals(server_proc, 1);
|
||||||
|
closefrom(STDERR_FILENO + 1);
|
||||||
sigprocmask(SIG_SETMASK, &oldset, NULL);
|
sigprocmask(SIG_SETMASK, &oldset, NULL);
|
||||||
log_close();
|
log_close();
|
||||||
environ_push(child);
|
environ_push(child);
|
||||||
|
Loading…
Reference in New Issue
Block a user