mirror of
https://github.com/reactos/reactos.git
synced 2025-06-01 23:48:12 +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,
|
&BootEntry->RegistryPath,
|
||||||
KEY_READ);
|
KEY_READ);
|
||||||
if ((NT_SUCCESS(Status)) || /* ReactOS HACK for SETUPLDR */
|
if ((NT_SUCCESS(Status)) || /* ReactOS HACK for SETUPLDR */
|
||||||
((KeLoaderBlock->SetupLdrBlock) && (KeyHandle = (PVOID)1)))
|
((KeLoaderBlock->SetupLdrBlock) && (KeyHandle == (PVOID)1)))
|
||||||
{
|
{
|
||||||
/* Save the handle */
|
/* Save the handle */
|
||||||
DriverInfo->ServiceHandle = KeyHandle;
|
DriverInfo->ServiceHandle = KeyHandle;
|
||||||
|
|
Loading…
Reference in a new issue