mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +00:00
[NTOS:CM] Probe for write in NtLockProductActivationKeys.
This doesn't technically make a difference, but it's good practice.
This commit is contained in:
parent
91cc1c3e4f
commit
b6df3c622e
1 changed files with 2 additions and 2 deletions
|
@ -1395,7 +1395,7 @@ NtLockProductActivationKeys(IN PULONG pPrivateVer,
|
|||
/* For user mode, probe it */
|
||||
if (PreviousMode != KernelMode)
|
||||
{
|
||||
ProbeForRead(pPrivateVer, sizeof(ULONG), sizeof(ULONG));
|
||||
ProbeForWriteUlong(pPrivateVer);
|
||||
}
|
||||
|
||||
/* Return the expected version */
|
||||
|
@ -1408,7 +1408,7 @@ NtLockProductActivationKeys(IN PULONG pPrivateVer,
|
|||
/* For user mode, probe it */
|
||||
if (PreviousMode != KernelMode)
|
||||
{
|
||||
ProbeForRead(pSafeMode, sizeof(ULONG), sizeof(ULONG));
|
||||
ProbeForWriteUlong(pSafeMode);
|
||||
}
|
||||
|
||||
/* Return the safe boot mode state */
|
||||
|
|
Loading…
Reference in a new issue