diff options
author | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-09-19 18:52:07 +0000 |
---|---|---|
committer | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-09-19 18:52:07 +0000 |
commit | 202515b47d871f46fbd14ce1750a95e604763c5d (patch) | |
tree | b5f71ac4aaa6fe99e29867c3ee96ee8a96827307 | |
parent | 928fbe8f1ccde38db0058dd138f0787ca6c6e6ed (diff) | |
download | edk2-platforms-202515b47d871f46fbd14ce1750a95e604763c5d.tar.xz |
Compute the end address of a section read from a file using the SizeOfRawData instead of VirtualSize, because the PE/COFF image format allows the SizeOfRawData to be smaller then VirtualSize.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1563 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | Tools/Source/TianoTools/PeCoffLoader/BasePeCoff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/Source/TianoTools/PeCoffLoader/BasePeCoff.c b/Tools/Source/TianoTools/PeCoffLoader/BasePeCoff.c index 9c25e1f4b8..556b2d73c9 100644 --- a/Tools/Source/TianoTools/PeCoffLoader/BasePeCoff.c +++ b/Tools/Source/TianoTools/PeCoffLoader/BasePeCoff.c @@ -858,7 +858,7 @@ Returns: Base = PeCoffLoaderImageAddress (ImageContext, Section->VirtualAddress);
End = PeCoffLoaderImageAddress (
ImageContext,
- Section->VirtualAddress + Section->Misc.VirtualSize - 1
+ Section->VirtualAddress + Section->SizeOfRawData - 1
);
if (ImageContext->IsTeImage) {
Base = (CHAR8 *) ((UINTN) Base + sizeof (EFI_TE_IMAGE_HEADER) - (UINTN) TeHdr->StrippedSize);
|