]> git.proxmox.com Git - mirror_edk2.git/commitdiff
ShellPkg: Code refine to avoid potential dereference of pointer.
authorQiu Shumin <shumin.qiu@intel.com>
Thu, 20 Nov 2014 01:31:36 +0000 (01:31 +0000)
committershenshushi <shenshushi@Edk2>
Thu, 20 Nov 2014 01:31:36 +0000 (01:31 +0000)
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Qiu Shumin <shumin.qiu@intel.com>
Reviewed-by: Jaben Carsey <Jaben.carsey@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16410 6f19259b-4bc3-4df7-8a09-765794883524

ShellPkg/Library/UefiShellLib/UefiShellLib.c

index 665e7334030fa356dc1e6da8c59967dbc429e7ec..6cef8b7d4cd03d6d05e6457482923a7d545b3663 100644 (file)
@@ -2078,7 +2078,7 @@ InternalCommandLineParse (
           ASSERT(GetItemValue == 0);\r
           break;\r
       }\r
-    } else if (GetItemValue != 0 && !InternalIsFlag(Argv[LoopCounter], AlwaysAllowNumbers, (CONST BOOLEAN)(CurrentItemPackage->Type == TypeTimeValue))) {\r
+    } else if (GetItemValue != 0 && CurrentItemPackage != NULL && !InternalIsFlag(Argv[LoopCounter], AlwaysAllowNumbers, (CONST BOOLEAN)(CurrentItemPackage->Type == TypeTimeValue))) {\r
       ASSERT(CurrentItemPackage != NULL);\r
       //\r
       // get the item VALUE for a previous flag\r