mirror of
https://github.com/reactos/reactos.git
synced 2025-06-11 04:47:22 +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(),
|
||||
0,
|
||||
KeyInfoSize);
|
||||
if (KeyInfo == NULL)
|
||||
if (KeyValueInformation == NULL)
|
||||
{
|
||||
/* Give up this time */
|
||||
Status = STATUS_NO_MEMORY;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue