mirror of
https://github.com/reactos/reactos.git
synced 2025-05-31 15:08:14 +00:00
[NTOSKRNL]
- Fix an assign where a comparison was intended. CID 2626. svn path=/trunk/; revision=50082
This commit is contained in:
parent
604d4c9de8
commit
a2ca649780
1 changed files with 1 additions and 1 deletions
|
@ -993,7 +993,7 @@ IopInitializeBootDrivers(VOID)
|
|||
&BootEntry->RegistryPath,
|
||||
KEY_READ);
|
||||
if ((NT_SUCCESS(Status)) || /* ReactOS HACK for SETUPLDR */
|
||||
((KeLoaderBlock->SetupLdrBlock) && (KeyHandle = (PVOID)1)))
|
||||
((KeLoaderBlock->SetupLdrBlock) && (KeyHandle == (PVOID)1)))
|
||||
{
|
||||
/* Save the handle */
|
||||
DriverInfo->ServiceHandle = KeyHandle;
|
||||
|
|
Loading…
Reference in a new issue