mirror of https://github.com/acidanthera/audk.git
Don't align image address for TeImage, because TeImage section alignment is undefined.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5948 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
bdabfae78d
commit
1046284db9
|
@ -314,9 +314,11 @@ CoreLoadPeImage (
|
|||
}
|
||||
|
||||
Image->ImageBasePage = Image->ImageContext.ImageAddress;
|
||||
Image->ImageContext.ImageAddress =
|
||||
(Image->ImageContext.ImageAddress + Image->ImageContext.SectionAlignment - 1) &
|
||||
~((UINTN)Image->ImageContext.SectionAlignment - 1);
|
||||
if (!Image->ImageContext.IsTeImage) {
|
||||
Image->ImageContext.ImageAddress =
|
||||
(Image->ImageContext.ImageAddress + Image->ImageContext.SectionAlignment - 1) &
|
||||
~((UINTN)Image->ImageContext.SectionAlignment - 1);
|
||||
}
|
||||
|
||||
//
|
||||
// Load the image from the file into the allocated memory
|
||||
|
|
Loading…
Reference in New Issue