diff options
Diffstat (limited to 'EdkModulePkg/Universal/DebugSupport/Dxe/DebugSupport.c')
-rw-r--r-- | EdkModulePkg/Universal/DebugSupport/Dxe/DebugSupport.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/EdkModulePkg/Universal/DebugSupport/Dxe/DebugSupport.c b/EdkModulePkg/Universal/DebugSupport/Dxe/DebugSupport.c index 118e9b7979..a0ec6c5934 100644 --- a/EdkModulePkg/Universal/DebugSupport/Dxe/DebugSupport.c +++ b/EdkModulePkg/Universal/DebugSupport/Dxe/DebugSupport.c @@ -96,12 +96,12 @@ Returns: EFI_OPEN_PROTOCOL_GET_PROTOCOL
);
if (Status == EFI_SUCCESS && DebugSupportProtocolPtr->Isa == EFI_ISA) {
- gBS->FreePool (HandlePtr);
+ FreePool (HandlePtr);
Status = EFI_ALREADY_STARTED;
goto ErrExit;
}
} while (NumHandles > 0);
- gBS->FreePool (HandlePtr);
+ FreePool (HandlePtr);
}
//
|