mirror of https://github.com/acidanthera/audk.git
Temporarily remove the assertions and we may find some error handling way to address potential dereference to NULL pointer.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7173 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
109e9a6156
commit
884c8bc047
|
@ -588,12 +588,10 @@ PeCoffLoaderRelocateImage (
|
|||
|
||||
if (NumberOfRvaAndSizes > EFI_IMAGE_DIRECTORY_ENTRY_BASERELOC) {
|
||||
RelocBase = PeCoffLoaderImageAddress (ImageContext, RelocDir->VirtualAddress);
|
||||
ASSERT(RelocBase != NULL);
|
||||
RelocBaseEnd = PeCoffLoaderImageAddress (
|
||||
ImageContext,
|
||||
RelocDir->VirtualAddress + RelocDir->Size - 1
|
||||
);
|
||||
ASSERT(RelocBaseEnd !=NULL);
|
||||
} else {
|
||||
//
|
||||
// Set base and end to bypass processing below.
|
||||
|
@ -628,7 +626,6 @@ PeCoffLoaderRelocateImage (
|
|||
RelocEnd = (UINT16 *) ((CHAR8 *) RelocBase + RelocBase->SizeOfBlock);
|
||||
if (!(ImageContext->IsTeImage)) {
|
||||
FixupBase = PeCoffLoaderImageAddress (ImageContext, RelocBase->VirtualAddress);
|
||||
ASSERT(FixupBase != NULL);
|
||||
} else {
|
||||
FixupBase = (CHAR8 *)(UINTN)(ImageContext->ImageAddress +
|
||||
RelocBase->VirtualAddress +
|
||||
|
|
Loading…
Reference in New Issue