Bugfix: Use _exit in forking to avoid calling the libev cleanup handler (Thanks xeen)

next
Michael Stapelberg 2011-10-15 16:56:47 +01:00
parent 32b97745ec
commit 914ca6cfe7
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ void start_application(const char *command) {
execl(shell, shell, "-c", command, (void*)NULL); execl(shell, shell, "-c", command, (void*)NULL);
/* not reached */ /* not reached */
} }
exit(0); _exit(0);
} }
wait(0); wait(0);