From 2c3b5ec562c7b43a73424e1be25e2053d1edfe4f Mon Sep 17 00:00:00 2001 From: lgao4 Date: Wed, 14 Mar 2007 02:02:43 +0000 Subject: Clean up the gBS sevice (CopyMem, SetMem, AllocatePool, FreePool) with the corresponding APIs defined in Mde library class for these modules. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2456 6f19259b-4bc3-4df7-8a09-765794883524 --- .../Universal/DevicePath/Dxe/DevicePathFromText.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'EdkModulePkg/Universal/DevicePath/Dxe/DevicePathFromText.c') diff --git a/EdkModulePkg/Universal/DevicePath/Dxe/DevicePathFromText.c b/EdkModulePkg/Universal/DevicePath/Dxe/DevicePathFromText.c index 3014b200ac..94a4a2b5b7 100644 --- a/EdkModulePkg/Universal/DevicePath/Dxe/DevicePathFromText.c +++ b/EdkModulePkg/Universal/DevicePath/Dxe/DevicePathFromText.c @@ -2277,10 +2277,10 @@ ConvertTextToDeviceNode ( DeviceNode = DumpNode (DeviceNodeStr); } else { DeviceNode = DumpNode (ParamStr); - gBS->FreePool (ParamStr); + FreePool (ParamStr); } - gBS->FreePool (DeviceNodeStr); + FreePool (DeviceNodeStr); return DeviceNode; } @@ -2346,12 +2346,12 @@ ConvertTextToDevicePath ( DeviceNode = DumpNode (DeviceNodeStr); } else { DeviceNode = DumpNode (ParamStr); - gBS->FreePool (ParamStr); + FreePool (ParamStr); } NewDevicePath = AppendDeviceNodeProtocolInterface (DevicePath, DeviceNode); - gBS->FreePool (DevicePath); - gBS->FreePool (DeviceNode); + FreePool (DevicePath); + FreePool (DeviceNode); DevicePath = NewDevicePath; if (IsInstanceEnd) { @@ -2359,12 +2359,12 @@ ConvertTextToDevicePath ( SetDevicePathInstanceEndNode (DeviceNode); NewDevicePath = AppendDeviceNodeProtocolInterface (DevicePath, DeviceNode); - gBS->FreePool (DevicePath); - gBS->FreePool (DeviceNode); + FreePool (DevicePath); + FreePool (DeviceNode); DevicePath = NewDevicePath; } } - gBS->FreePool (DevicePathStr); + FreePool (DevicePathStr); return DevicePath; } -- cgit v1.2.3