mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
[BOOTLIB]
- Fix operator precedence in call to MmMdAddDescriptorToList. CID 1341191. svn path=/trunk/; revision=73675
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user