gdi.exe16: No need to reset SIGCHLD because we're not changing it anymore.

This commit is contained in:
Ken Thomases 2011-11-30 16:48:54 -06:00 committed by Alexandre Julliard
parent f658feb70f
commit 10705f6e3d
1 changed files with 0 additions and 1 deletions

View File

@ -274,7 +274,6 @@ static int CreateSpoolFile(LPCSTR pszOutput)
/* reset signals that we previously set to SIG_IGN */ /* reset signals that we previously set to SIG_IGN */
signal( SIGPIPE, SIG_DFL ); signal( SIGPIPE, SIG_DFL );
signal( SIGCHLD, SIG_DFL );
execl("/bin/sh", "/bin/sh", "-c", psCmdP, NULL); execl("/bin/sh", "/bin/sh", "-c", psCmdP, NULL);
_exit(1); _exit(1);