Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
UefiPayloadPkg: Fix RelaAddress type always mismatch in if condition
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3984 Under function RolocateElfDynamic() in Elf32Lib.c if (RelaAddress == MAX_UINT64) is always FALSE while RelaAddress is UINT32 Fix is to modify if condition check to "if (RelaAddress == MAX_UINT32)" Cc: Ray Ni <[email protected]> Cc: Guo Dong <[email protected]> Cc: Gua Guo <[email protected]> Signed-off-by: James Lu <[email protected]> Reviewed-by: Guo Dong <[email protected]>
- Loading branch information