mirror of
https://github.com/reactos/reactos.git
synced 2025-04-27 17:10:22 +00:00
[NTOSKRNL] Save ObjectSecurityMode value on boot
This commit is contained in:
parent
98638cc2df
commit
a33a69b3f4
3 changed files with 4 additions and 1 deletions
|
@ -149,7 +149,7 @@ INIT_SECTION CM_SYSTEM_CONTROL_VECTOR CmControlVector[] =
|
|||
{
|
||||
L"Session Manager",
|
||||
L"ObjectSecurityMode",
|
||||
&DummyData,
|
||||
&ObpObjectSecurityMode,
|
||||
NULL,
|
||||
NULL
|
||||
},
|
||||
|
|
|
@ -618,6 +618,7 @@ extern ALIGNEDNAME ObpDosDevicesShortNameRoot;
|
|||
extern UNICODE_STRING ObpDosDevicesShortName;
|
||||
extern WCHAR ObpUnsecureGlobalNamesBuffer[128];
|
||||
extern ULONG ObpUnsecureGlobalNamesLength;
|
||||
extern ULONG ObpObjectSecurityMode;
|
||||
|
||||
//
|
||||
// Inlined Functions
|
||||
|
|
|
@ -52,6 +52,8 @@ PsInitializeQuotaSystem(VOID);
|
|||
|
||||
ULONG ObpInitializationPhase;
|
||||
|
||||
ULONG ObpObjectSecurityMode = 0;
|
||||
|
||||
/* PRIVATE FUNCTIONS *********************************************************/
|
||||
|
||||
static
|
||||
|
|
Loading…
Reference in a new issue