xquartz: Ignore SIGPIPE at process launch
Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
This commit is contained in:
parent
6ac3178c33
commit
9a66690eaf
|
@ -626,6 +626,9 @@ main(int argc, char **argv, char **envp)
|
||||||
mach_port_t mp;
|
mach_port_t mp;
|
||||||
kern_return_t kr;
|
kern_return_t kr;
|
||||||
|
|
||||||
|
/* Ignore SIGPIPE */
|
||||||
|
signal(SIGPIPE, SIG_IGN);
|
||||||
|
|
||||||
/* Setup our environment for our children */
|
/* Setup our environment for our children */
|
||||||
setup_env();
|
setup_env();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue