mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Initialize registry hives only once.
svn path=/trunk/; revision=3651
This commit is contained in:
parent
e8f680ecbb
commit
95bb94d117
1 changed files with 22 additions and 6 deletions
|
@ -6,6 +6,8 @@
|
|||
* UPDATE HISTORY:
|
||||
*/
|
||||
|
||||
/* INCLUDES *****************************************************************/
|
||||
|
||||
#include <ddk/ntddk.h>
|
||||
#include <roscfg.h>
|
||||
#include <internal/ob.h>
|
||||
|
@ -19,9 +21,16 @@
|
|||
|
||||
#include "cm.h"
|
||||
|
||||
|
||||
/* GLOBALS ******************************************************************/
|
||||
|
||||
extern POBJECT_TYPE CmiKeyType;
|
||||
extern PREGISTRY_HIVE CmiVolatileHive;
|
||||
|
||||
static BOOLEAN CmiRegistryInitialized = FALSE;
|
||||
|
||||
|
||||
/* FUNCTIONS ****************************************************************/
|
||||
|
||||
NTSTATUS STDCALL
|
||||
NtCreateKey(OUT PHANDLE KeyHandle,
|
||||
|
@ -1575,11 +1584,18 @@ NtUnloadKey(IN HANDLE KeyHandle)
|
|||
NTSTATUS STDCALL
|
||||
NtInitializeRegistry(IN BOOLEAN SetUpBoot)
|
||||
{
|
||||
NTSTATUS Status;
|
||||
NTSTATUS Status = STATUS_ACCESS_DENIED;
|
||||
|
||||
if (CmiRegistryInitialized == FALSE)
|
||||
{
|
||||
/* FIXME: save boot log file */
|
||||
|
||||
Status = CmiInitHives(SetUpBoot);
|
||||
|
||||
CmiRegistryInitialized = TRUE;
|
||||
}
|
||||
|
||||
return(Status);
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
|
|
Loading…
Reference in a new issue