diff options
-rw-r--r-- | xorg-server/dix/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xorg-server/dix/main.c b/xorg-server/dix/main.c index 217117eb0..856622f5e 100644 --- a/xorg-server/dix/main.c +++ b/xorg-server/dix/main.c @@ -208,7 +208,6 @@ main(int argc, char *argv[], char *envp[]) #endif InitBlockAndWakeupHandlers(); /* Perform any operating system dependent initializations you'd like */ - OsInit(); if (serverGeneration == 1) { CreateWellKnownSockets(); for (i = 1; i < MAXCLIENTS; i++) @@ -222,6 +221,7 @@ main(int argc, char *argv[], char *envp[]) ResetWellKnownSockets(); clients[0] = serverClient; currentMaxClients = 1; + OsInit(); /* Initialize privates before first allocation */ dixResetPrivates(); |