From fbae6b833d5ca03a96d2ee8661e5e82646496614 Mon Sep 17 00:00:00 2001 From: Jeff Fan Date: Wed, 31 Dec 2008 08:05:18 +0000 Subject: [PATCH] remove unnecessary check for NULL pointer. --- MdeModulePkg/Library/GenericBdsLib/BdsConsole.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/MdeModulePkg/Library/GenericBdsLib/BdsConsole.c b/MdeModulePkg/Library/GenericBdsLib/BdsConsole.c index 3d7758d79..f826e6d95 100644 --- a/MdeModulePkg/Library/GenericBdsLib/BdsConsole.c +++ b/MdeModulePkg/Library/GenericBdsLib/BdsConsole.c @@ -757,9 +757,8 @@ EnableQuietBoot ( &Width ); if (EFI_ERROR (Status)) { - if (ImageData != NULL) { - FreePool (ImageData); - } + FreePool (ImageData); + if (Badging == NULL) { return Status; } else { @@ -854,9 +853,8 @@ EnableQuietBoot ( } } - if (ImageData != NULL) { - FreePool (ImageData); - } + FreePool (ImageData); + if (Blt != NULL) { FreePool (Blt); } -- 2.11.4.GIT