diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | softhddev.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,6 +1,7 @@ User johns Date: + Use more portable fork for vfork. Fix crash with VA-API vdpau backend. User mini73 diff --git a/softhddev.c b/softhddev.c index 1759109..d0e32ee 100644 --- a/softhddev.c +++ b/softhddev.c @@ -3092,7 +3092,7 @@ static void StartXServer(void) Debug(3, "x-setup: Starting X server '%s' '%s'\n", args[0], X11ServerArguments); // fork - if ((pid = vfork())) { // parent + if ((pid = fork())) { // parent X11ServerPid = pid; Debug(3, "x-setup: Started x-server pid=%d\n", X11ServerPid); |