From 58e60b30924c31373c90474e5ed5164573282fe5 Mon Sep 17 00:00:00 2001 From: Phillip Susi Date: Tue, 1 May 2001 23:06:25 +0000 Subject: [PATCH] Don't crash if win32k.sys isn't there.. it's ok.. svn path=/trunk/; revision=1851 --- reactos/subsys/smss/init.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/reactos/subsys/smss/init.c b/reactos/subsys/smss/init.c index 8741375b4c8..45e82c56894 100644 --- a/reactos/subsys/smss/init.c +++ b/reactos/subsys/smss/init.c @@ -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 * @@ -324,11 +324,12 @@ BOOL InitSessionManager (HANDLE Children[]) L"\\SystemRoot\\system32\\drivers\\win32k.sys"); Status = NtLoadDriver (&CmdLineW); +#if 0 if (!NT_SUCCESS(Status)) { return FALSE; } - +#endif /* Run csrss.exe */ RtlInitUnicodeString(&UnicodeString, L"\\CsrssInitDone");