BaseTools/GenFw: Avoid possible NULL pointer dereference
Cc: Liming Gao <liming.gao@intel.com> Cc: Yonghong Zhu <yonghong.zhu@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hao Wu <hao.a.wu@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
@@ -167,6 +167,10 @@ InitializeElf32 (
|
||||
// Create COFF Section offset buffer and zero.
|
||||
//
|
||||
mCoffSectionsOffset = (UINT32 *)malloc(mEhdr->e_shnum * sizeof (UINT32));
|
||||
if (mCoffSectionsOffset == NULL) {
|
||||
Error (NULL, 0, 4001, "Resource", "memory cannot be allocated!");
|
||||
return FALSE;
|
||||
}
|
||||
memset(mCoffSectionsOffset, 0, mEhdr->e_shnum * sizeof(UINT32));
|
||||
|
||||
//
|
||||
@@ -526,6 +530,10 @@ ScanSections32 (
|
||||
// Allocate base Coff file. Will be expanded later for relocations.
|
||||
//
|
||||
mCoffFile = (UINT8 *)malloc(mCoffOffset);
|
||||
if (mCoffFile == NULL) {
|
||||
Error (NULL, 0, 4001, "Resource", "memory cannot be allocated!");
|
||||
}
|
||||
assert (mCoffFile != NULL);
|
||||
memset(mCoffFile, 0, mCoffOffset);
|
||||
|
||||
//
|
||||
|
Reference in New Issue
Block a user