Reviewed-by: Nate DeSimone <[email protected]> -----Original Message----- From: Pabba, PhanindraX Babu <[email protected]> Sent: Thursday, February 22, 2024 10:52 PM To: [email protected] Cc: Pabba, PhanindraX Babu <[email protected]>; Desimone, Nathaniel L <[email protected]>; Liming Gao <[email protected]> Subject: [PATCH] IpmiFeaturePkg: Add missed call to FreePool
From: PhanindraX Babu Pabba <[email protected]> Adding missed out call to FreePool API to free the allocated memory. Cc: Nate DeSimone <[email protected]> Cc: Liming Gao <[email protected]> Signed-off-by: PhanindraX Babu Pabba <[email protected]> --- .../Intel/OutOfBandManagement/IpmiFeaturePkg/BmcAcpi/BmcAcpi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Features/Intel/OutOfBandManagement/IpmiFeaturePkg/BmcAcpi/BmcAcpi.c b/Features/Intel/OutOfBandManagement/IpmiFeaturePkg/BmcAcpi/BmcAcpi.c index 990b4b9e..070a3452 100644 --- a/Features/Intel/OutOfBandManagement/IpmiFeaturePkg/BmcAcpi/BmcAcpi.c +++ b/Features/Intel/OutOfBandManagement/IpmiFeaturePkg/BmcAcpi/BmcAcpi.c @@ -250,6 +250,7 @@ BmcAcpiEntryPoint ( // Increment the instance // Instance++; + FreePool (CurrentTable); } } -- 2.39.1.windows.1 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#117093): https://edk2.groups.io/g/devel/message/117093 Mute This Topic: https://groups.io/mt/104524860/21656 Group Owner: [email protected] Unsubscribe: https://edk2.groups.io/g/devel/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
