mirror of
https://github.com/acidanthera/audk.git
synced 2025-04-08 17:05:09 +02:00
ShellPkg: Handle pool allocation failure
FreePool() will receive NULL if AllocateZeroPool() fails. So a check for NULL is needed. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Sergei Antonov <saproj@gmail.com> reviewed-by: jaben carsey <jaben.carsey@gmail.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@14689 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
6b6aa6d136
commit
037ca23593
@ -84,9 +84,9 @@ FileHandleGetInfo (
|
||||
//
|
||||
// if we got an error free the memory and return NULL
|
||||
//
|
||||
if (EFI_ERROR(Status)) {
|
||||
if (EFI_ERROR(Status) && (FileInfo != NULL)) {
|
||||
FreePool(FileInfo);
|
||||
return NULL;
|
||||
FileInfo = NULL;
|
||||
}
|
||||
}
|
||||
return (FileInfo);
|
||||
|
Loading…
x
Reference in New Issue
Block a user