mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
Don't crash ReactOS if DLL-Preloading fails.
svn path=/trunk/; revision=4684
This commit is contained in:
parent
9fef3a18ee
commit
54aa3104d4
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: init.c,v 1.46 2003/05/12 19:46:17 ekohl Exp $
|
/* $Id: init.c,v 1.47 2003/05/14 21:27:53 ekohl Exp $
|
||||||
*
|
*
|
||||||
* init.c - Session Manager initialization
|
* init.c - Session Manager initialization
|
||||||
*
|
*
|
||||||
|
@ -862,7 +862,7 @@ InitSessionManager(HANDLE Children[])
|
||||||
if (!NT_SUCCESS(Status))
|
if (!NT_SUCCESS(Status))
|
||||||
{
|
{
|
||||||
PrintString("SM: Failed to preload system DLLs (Status %lx)\n", Status);
|
PrintString("SM: Failed to preload system DLLs (Status %lx)\n", Status);
|
||||||
return(Status);
|
/* Don't crash ReactOS if DLLs cannot be loaded */
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Create paging files */
|
/* Create paging files */
|
||||||
|
|
Loading…
Reference in a new issue