MdeModulePkg: FileExplorerLib: Add check when to call FreePool function

when free up resource allocated for a MenuEntry, there exists
the case that the DevicePath and DisplayString are NULL,
so before calling FreePool function, need to check.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
Reviewed-by: Eric Dong <eric.dong@intel.com>
This commit is contained in:
Dandan Bi 2016-02-29 10:08:47 +08:00 committed by Feng Tian
parent 0b966ddd61
commit bbd6b0106e
1 changed files with 6 additions and 2 deletions

View File

@ -302,7 +302,9 @@ LibDestroyMenuEntry (
FileContext = (FILE_CONTEXT *) MenuEntry->VariableContext;
if (!FileContext->IsRoot) {
FreePool (FileContext->DevicePath);
if (FileContext->DevicePath != NULL) {
FreePool (FileContext->DevicePath);
}
} else {
if (FileContext->FileHandle != NULL) {
FileContext->FileHandle->Close (FileContext->FileHandle);
@ -315,7 +317,9 @@ LibDestroyMenuEntry (
FreePool (FileContext);
FreePool (MenuEntry->DisplayString);
if (MenuEntry->DisplayString != NULL) {
FreePool (MenuEntry->DisplayString);
}
if (MenuEntry->HelpString != NULL) {
FreePool (MenuEntry->HelpString);
}