Patch include:
1.Change function name to avoid name conflict. 2.Refine check for Pe Image. Signed-off-by: Eric Dong <eric.dong@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com> git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13220 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -144,10 +144,6 @@ PeCoffLoaderGetPeHeader (
|
||||
return RETURN_UNSUPPORTED;
|
||||
}
|
||||
|
||||
if (Hdr.Pe32->FileHeader.SizeOfOptionalHeader != sizeof (EFI_IMAGE_OPTIONAL_HEADER32) - (EFI_IMAGE_NUMBER_OF_DIRECTORY_ENTRIES - Hdr.Pe32->OptionalHeader.NumberOfRvaAndSizes) * sizeof (EFI_IMAGE_DATA_DIRECTORY)) {
|
||||
return RETURN_UNSUPPORTED;
|
||||
}
|
||||
|
||||
//
|
||||
// 2. Check the OptionalHeader.SizeOfHeaders field.
|
||||
// This field will be use like the following mode, so just compare the result.
|
||||
@@ -221,10 +217,6 @@ PeCoffLoaderGetPeHeader (
|
||||
return RETURN_UNSUPPORTED;
|
||||
}
|
||||
|
||||
if (Hdr.Pe32Plus->FileHeader.SizeOfOptionalHeader != sizeof (EFI_IMAGE_OPTIONAL_HEADER32) - (EFI_IMAGE_NUMBER_OF_DIRECTORY_ENTRIES - Hdr.Pe32Plus->OptionalHeader.NumberOfRvaAndSizes) * sizeof (EFI_IMAGE_DATA_DIRECTORY)) {
|
||||
return RETURN_UNSUPPORTED;
|
||||
}
|
||||
|
||||
//
|
||||
// 2. Check the OptionalHeader.SizeOfHeaders field.
|
||||
// This field will be use like the following mode, so just compare the result.
|
||||
|
Reference in New Issue
Block a user