From 5f2b16169de0d248a8912014e0d365ca4091d645 Mon Sep 17 00:00:00 2001 From: Stefan Ginsberg Date: Tue, 9 Sep 2008 20:06:59 +0000 Subject: [PATCH] - Free memory allocated by MmHeapAlloc through MmHeapFree svn path=/trunk/; revision=36095 --- reactos/boot/freeldr/freeldr/arch/i386/hwacpi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/boot/freeldr/freeldr/arch/i386/hwacpi.c b/reactos/boot/freeldr/freeldr/arch/i386/hwacpi.c index 39f163ea4d2..391bbd28455 100644 --- a/reactos/boot/freeldr/freeldr/arch/i386/hwacpi.c +++ b/reactos/boot/freeldr/freeldr/arch/i386/hwacpi.c @@ -123,7 +123,7 @@ DetectAcpiBios(PCONFIGURATION_COMPONENT_DATA SystemKey, ULONG *BusNumber) /* Set 'Identifier' value */ FldrSetIdentifier(BiosKey, "ACPI BIOS"); - MmFreeMemory(PartialResourceList); + MmHeapFree(PartialResourceList); } }