mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 07:45:00 +01:00
Handle vfork/exec failure
Don't call atexit, exit without cleanup.
This commit is contained in:
parent
a9bd7b2848
commit
cf0904f752
3 changed files with 3 additions and 3 deletions
|
|
@ -562,7 +562,7 @@ PulseAudioBackend::launch_control_app ()
|
|||
{
|
||||
if (::vfork () == 0) {
|
||||
::execlp ("pavucontrol", "pavucontrol", (char*)NULL);
|
||||
exit (EXIT_SUCCESS);
|
||||
_exit (EXIT_SUCCESS);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue