mirror of
https://github.com/reactos/reactos.git
synced 2025-06-14 13:18:46 +00:00
[NTDLL]
Fix broken if condition svn path=/trunk/; revision=53793
This commit is contained in:
parent
b7f5be021d
commit
a694d0b795
1 changed files with 1 additions and 1 deletions
|
@ -206,7 +206,7 @@ LdrQueryImageFileKeyOption(IN HKEY KeyHandle,
|
||||||
KeyValueInformation = RtlAllocateHeap(RtlGetProcessHeap(),
|
KeyValueInformation = RtlAllocateHeap(RtlGetProcessHeap(),
|
||||||
0,
|
0,
|
||||||
KeyInfoSize);
|
KeyInfoSize);
|
||||||
if (KeyInfo == NULL)
|
if (KeyValueInformation == NULL)
|
||||||
{
|
{
|
||||||
/* Give up this time */
|
/* Give up this time */
|
||||||
Status = STATUS_NO_MEMORY;
|
Status = STATUS_NO_MEMORY;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue