mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 19:26:33 +00:00
[NTOSKRNL]
- Fix an assign where a comparison was intended. CID 2626. svn path=/trunk/; revision=50082
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user