Author: ekohl
Date: Sun May 12 13:24:37 2013
New Revision: 59002

URL: http://svn.reactos.org/svn/reactos?rev=59002&view=rev
Log:
[WINLOGON]
Wait for the LSA server to complete its initialization before initializing the 
GINA dll. This change is required because future changes to MSGINAs logon code 
will require access to the LSA.

Modified:
    trunk/reactos/base/system/winlogon/winlogon.c

Modified: trunk/reactos/base/system/winlogon/winlogon.c
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/winlogon/winlogon.c?rev=59002&r1=59001&r2=59002&view=diff
==============================================================================
--- trunk/reactos/base/system/winlogon/winlogon.c       [iso-8859-1] (original)
+++ trunk/reactos/base/system/winlogon/winlogon.c       [iso-8859-1] Sun May 12 
13:24:37 2013
@@ -363,6 +363,9 @@
         ExitProcess(1);
     }
 
+    /* Wait for the LSA server */
+    WaitForLsass();
+
     /* Load and initialize gina */
     if (!GinaInit(WLSession))
     {
@@ -373,9 +376,6 @@
     }
 
     DisplayStatusMessage(WLSession, WLSession->WinlogonDesktop, 
IDS_REACTOSISSTARTINGUP);
-
-    /* Wait for the LSA server */
-    WaitForLsass();
 
 #if 0
     /* Connect to NetLogon service (lsass.exe) */


Reply via email to