mirror of
https://github.com/chocolate-doom/launcher.git
synced 2024-11-10 07:12:06 +00:00
Reset SIGCHLD response to default when executing setup program, so that
running setup multiple times doesn't cause the IWAD detection to stop working. Subversion-branch: /launcher Subversion-revision: 1769
This commit is contained in:
parent
d7617011e0
commit
4c276878e8
1 changed files with 2 additions and 0 deletions
|
@ -99,6 +99,8 @@ void ExecuteProgram(const char *executable, const char *iwad, const char *args)
|
|||
|
||||
if (childpid == 0)
|
||||
{
|
||||
signal(SIGCHLD, SIG_DFL);
|
||||
|
||||
DoExec(executable, iwad, args);
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue