mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[NTOS:CM] Add extra validation for the information class parameter in NtEnumerateValueKey().
This commit is contained in:
parent
49e08b23ce
commit
16752875db
1 changed files with 7 additions and 3 deletions
|
@ -551,14 +551,18 @@ NtEnumerateValueKey(IN HANDLE KeyHandle,
|
|||
PCM_KEY_BODY KeyObject;
|
||||
REG_ENUMERATE_VALUE_KEY_INFORMATION EnumerateValueKeyInfo;
|
||||
REG_POST_OPERATION_INFORMATION PostOperationInfo;
|
||||
|
||||
PAGED_CODE();
|
||||
|
||||
DPRINT("NtEnumerateValueKey() KH 0x%p, Index 0x%x, KVIC %d, Length %lu\n",
|
||||
KeyHandle, Index, KeyValueInformationClass, Length);
|
||||
|
||||
/* Reject classes we don't know about */
|
||||
if ((KeyValueInformationClass != KeyValueBasicInformation) &&
|
||||
(KeyValueInformationClass != KeyValueFullInformation) &&
|
||||
(KeyValueInformationClass != KeyValuePartialInformation))
|
||||
if ((KeyValueInformationClass != KeyValueBasicInformation) &&
|
||||
(KeyValueInformationClass != KeyValueFullInformation) &&
|
||||
(KeyValueInformationClass != KeyValuePartialInformation) &&
|
||||
(KeyValueInformationClass != KeyValueFullInformationAlign64) &&
|
||||
(KeyValueInformationClass != KeyValuePartialInformationAlign64))
|
||||
{
|
||||
/* Fail */
|
||||
return STATUS_INVALID_PARAMETER;
|
||||
|
|
Loading…
Reference in a new issue