mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 13:06:34 +00:00
Don't crash if win32k.sys isn't there.. it's ok..
svn path=/trunk/; revision=1851
This commit is contained in:
parent
f98bbb1df7
commit
58e60b3092
1 changed files with 3 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: init.c,v 1.23 2001/03/25 02:34:30 dwelch Exp $
|
/* $Id: init.c,v 1.24 2001/05/01 23:06:25 phreak Exp $
|
||||||
*
|
*
|
||||||
* init.c - Session Manager initialization
|
* init.c - Session Manager initialization
|
||||||
*
|
*
|
||||||
|
@ -324,11 +324,12 @@ BOOL InitSessionManager (HANDLE Children[])
|
||||||
L"\\SystemRoot\\system32\\drivers\\win32k.sys");
|
L"\\SystemRoot\\system32\\drivers\\win32k.sys");
|
||||||
Status = NtLoadDriver (&CmdLineW);
|
Status = NtLoadDriver (&CmdLineW);
|
||||||
|
|
||||||
|
#if 0
|
||||||
if (!NT_SUCCESS(Status))
|
if (!NT_SUCCESS(Status))
|
||||||
{
|
{
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
/* Run csrss.exe */
|
/* Run csrss.exe */
|
||||||
RtlInitUnicodeString(&UnicodeString,
|
RtlInitUnicodeString(&UnicodeString,
|
||||||
L"\\CsrssInitDone");
|
L"\\CsrssInitDone");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue