mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 07:05:42 +00:00
[BOOTLIB]
- Fix operator precedence in call to MmMdAddDescriptorToList. CID 1341191. svn path=/trunk/; revision=73675
This commit is contained in:
parent
cfe19bdf5f
commit
b1de4fb737
1 changed files with 2 additions and 2 deletions
|
@ -1680,8 +1680,8 @@ MmFwGetMemoryMap (
|
|||
Status = MmMdAddDescriptorToList(MemoryMap,
|
||||
Descriptor,
|
||||
BL_MM_ADD_DESCRIPTOR_TRUNCATE_FLAG |
|
||||
(Flags & BL_MM_FLAG_REQUEST_COALESCING) ?
|
||||
BL_MM_ADD_DESCRIPTOR_COALESCE_FLAG : 0);
|
||||
((Flags & BL_MM_FLAG_REQUEST_COALESCING) ?
|
||||
BL_MM_ADD_DESCRIPTOR_COALESCE_FLAG : 0));
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
EfiPrintf(L"Failed to add full descriptor: %lx\r\n", Status);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue