From 2428dcb8c9e611b3034781989a035115c3ea6363 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marvin=20Ha=CC=88user?= <8659494+mhaeuser@users.noreply.github.com> Date: Fri, 17 Mar 2023 22:54:44 +0100 Subject: [PATCH] MdeModulePkg/DxeCore: Fix RelocationData type --- MdeModulePkg/Core/Dxe/Image/Image.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/MdeModulePkg/Core/Dxe/Image/Image.c b/MdeModulePkg/Core/Dxe/Image/Image.c index aeede490bf..ae244ad7d1 100644 --- a/MdeModulePkg/Core/Dxe/Image/Image.c +++ b/MdeModulePkg/Core/Dxe/Image/Image.c @@ -564,15 +564,15 @@ CoreLoadPeImage ( IN OUT UEFI_IMAGE_LOADER_IMAGE_CONTEXT *ImageContext ) { - EFI_STATUS Status; - BOOLEAN DstBufAlocated; - UINT32 Size; - EFI_MEMORY_TYPE ImageCodeMemoryType; - EFI_MEMORY_TYPE ImageDataMemoryType; - PE_COFF_LOADER_RUNTIME_CONTEXT *RelocationData; - EFI_PHYSICAL_ADDRESS BufferAddress; - UINTN LoadAddress; - UINT32 RelocDataSize; + EFI_STATUS Status; + BOOLEAN DstBufAlocated; + UINT32 Size; + EFI_MEMORY_TYPE ImageCodeMemoryType; + EFI_MEMORY_TYPE ImageDataMemoryType; + UEFI_IMAGE_LOADER_RUNTIME_CONTEXT *RelocationData; + EFI_PHYSICAL_ADDRESS BufferAddress; + UINTN LoadAddress; + UINT32 RelocDataSize; RelocationData = NULL;