diff options
author | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-28 06:08:00 +0000 |
---|---|---|
committer | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-28 06:08:00 +0000 |
commit | c941b270ea76d206e57b20a86359bddd6ce67ef3 (patch) | |
tree | 438a0701350764fbc4e35247ee9a46579913bacd /MdePkg/Library/BasePeCoffLib/BasePeCoff.c | |
parent | 0c235b66d2459e2e95e1186d0ae963b022c733dd (diff) | |
download | edk2-platforms-c941b270ea76d206e57b20a86359bddd6ce67ef3.tar.xz |
TeImage Signature should be got from Te pointer, not Pe pointer
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1136 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BasePeCoffLib/BasePeCoff.c')
-rw-r--r-- | MdePkg/Library/BasePeCoffLib/BasePeCoff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdePkg/Library/BasePeCoffLib/BasePeCoff.c b/MdePkg/Library/BasePeCoffLib/BasePeCoff.c index 6d36b6dff0..ebc3b3cc6c 100644 --- a/MdePkg/Library/BasePeCoffLib/BasePeCoff.c +++ b/MdePkg/Library/BasePeCoffLib/BasePeCoff.c @@ -144,7 +144,7 @@ PeCoffLoaderGetPeHeader ( //
// Use Signature to figure out if we understand the image format
//
- if (Hdr.Pe32->Signature == EFI_TE_IMAGE_HEADER_SIGNATURE) {
+ if (Hdr.Te->Signature == EFI_TE_IMAGE_HEADER_SIGNATURE) {
ImageContext->IsTeImage = TRUE;
ImageContext->Machine = Hdr.Te->Machine;
ImageContext->ImageType = (UINT16)(Hdr.Te->Subsystem);
|