mirror of
https://github.com/reactos/reactos.git
synced 2025-07-28 16:12:04 +00:00
[SETUP/LIB] Fix wrong if() logic. CID1441307
This commit is contained in:
parent
183a81ee82
commit
ffa8ff7574
1 changed files with 1 additions and 1 deletions
|
@ -1150,7 +1150,7 @@ QueryBootStoreOptions(
|
|||
//
|
||||
|
||||
// if (BootStore->Type >= BldrTypeMax || NtosBootLoaders[BootStore->Type].Type >= BldrTypeMax)
|
||||
if (BootStore->Type != FreeLdr || BootStore->Type != NtLdr)
|
||||
if (BootStore->Type != FreeLdr && BootStore->Type != NtLdr)
|
||||
{
|
||||
DPRINT1("Loader type %d is currently unsupported!\n", NtosBootLoaders[BootStore->Type].Type);
|
||||
return STATUS_NOT_SUPPORTED;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue