mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Bail out of RtlQueryRegistryValues if RTL_QUERY_REGISTRY_REQUIRED specified
and value not found svn path=/trunk/; revision=6425
This commit is contained in:
parent
cda5a1a107
commit
bdb5b824b5
1 changed files with 9 additions and 6 deletions
|
@ -458,6 +458,8 @@ RtlQueryRegistryValues(IN ULONG RelativeTo,
|
|||
BufferSize,
|
||||
&ResultSize);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
if (! (QueryEntry->Flags & RTL_QUERY_REGISTRY_REQUIRED))
|
||||
{
|
||||
Status = QueryEntry->QueryRoutine(QueryEntry->Name,
|
||||
QueryEntry->DefaultType,
|
||||
|
@ -466,6 +468,7 @@ RtlQueryRegistryValues(IN ULONG RelativeTo,
|
|||
Context,
|
||||
QueryEntry->EntryContext);
|
||||
}
|
||||
}
|
||||
else if ((ValueInfo->Type == REG_MULTI_SZ) &&
|
||||
!(QueryEntry->Flags & RTL_QUERY_REGISTRY_NOEXPAND))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue