Bugfix: Use _exit in forking to avoid calling the libev cleanup handler (Thanks xeen)
This commit is contained in:
parent
32b97745ec
commit
914ca6cfe7
|
@ -123,7 +123,7 @@ void start_application(const char *command) {
|
|||
execl(shell, shell, "-c", command, (void*)NULL);
|
||||
/* not reached */
|
||||
}
|
||||
exit(0);
|
||||
_exit(0);
|
||||
}
|
||||
wait(0);
|
||||
|
||||
|
|
Loading…
Reference in New Issue