]> git.proxmox.com Git - mirror_edk2.git/commitdiff
ArmPlatformPkg/PL111LcdArmVExpressLib: fix incorrect FreePool () call
authorArd Biesheuvel <ard.biesheuvel@linaro.org>
Thu, 6 Apr 2017 12:10:41 +0000 (13:10 +0100)
committerArd Biesheuvel <ard.biesheuvel@linaro.org>
Thu, 6 Apr 2017 20:31:48 +0000 (21:31 +0100)
When we fail to modify the memory attributes for the VRAM allocation,
the allocation - which was made using AllocatePages() - is freed using
FreePool(). This is incorrect by itself, but it masks a second bug, i.e.,
that the address of the allocation is not in VramBaseAddress but in
*VramBaseAddress. So fix both issues.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Reviewed-by: Jeremy Linton <jeremy.linton@arm.com>
Tested-by: Ryan Harkin <ryan.harkin@linaro.org>
Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
ArmPlatformPkg/ArmVExpressPkg/Library/PL111LcdArmVExpressLib/PL111LcdArmVExpress.c

index 2000c9bdf4369689cea6623dd7b410221af37c35..a8125e81daacab114ef5f7c3a18f66f640e4d82e 100644 (file)
@@ -195,7 +195,7 @@ LcdPlatformGetVram (
     Status = Cpu->SetMemoryAttributes(Cpu, *VramBaseAddress, *VramSize, EFI_MEMORY_UC);\r
     ASSERT_EFI_ERROR(Status);\r
     if (EFI_ERROR(Status)) {\r
-      gBS->FreePool(VramBaseAddress);\r
+      gBS->FreePages (*VramBaseAddress, EFI_SIZE_TO_PAGES(*VramSize));\r
       return Status;\r
     }\r
     break;\r