Fixed problem with Xwindows (socket descriptors)

This commit is contained in:
Jaroslav Kysela 2003-10-17 07:38:38 +00:00
parent 85216d820e
commit 4e8ad5ff88

View file

@ -316,7 +316,7 @@ int snd_pcm_direct_server_create(snd_pcm_direct_t *dmix)
ret = fork();
if (ret == 0)
server_job(dmix);
exit(EXIT_SUCCESS);
_exit(EXIT_SUCCESS);
} else {
waitpid(ret, NULL, 0);
}