BaseTools/Source/Python: Verify TAB_TOD_DEFINES_FAMILY key present
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3344 Veify that TAB_TOD_DEFINES_FAMILY key is present in ToolDef dictionary before access. Cc: Bob Feng <bob.c.feng@intel.com> Cc: Liming Gao <gaoliming@byosoft.com.cn> Cc: Yuwei Chen <yuwei.chen@intel.com> Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Bob Feng <bob.c.feng@intel.com>
This commit is contained in:
committed by
mergify[bot]
parent
61680cac5e
commit
f2f4c6be2d
@ -1474,8 +1474,11 @@ class PlatformAutoGen(AutoGen):
|
||||
if ToolDef[Tool].get(TAB_TOD_DEFINES_BUILDRULEFAMILY, "") != "":
|
||||
if Family != ToolDef[Tool][TAB_TOD_DEFINES_BUILDRULEFAMILY]:
|
||||
continue
|
||||
elif Family != ToolDef[Tool][TAB_TOD_DEFINES_FAMILY]:
|
||||
continue
|
||||
else:
|
||||
if ToolDef[Tool].get(TAB_TOD_DEFINES_FAMILY, "") == "":
|
||||
continue
|
||||
if Family != ToolDef[Tool][TAB_TOD_DEFINES_FAMILY]:
|
||||
continue
|
||||
FamilyMatch = True
|
||||
# expand any wildcard
|
||||
if Target == TAB_STAR or Target == self.BuildTarget:
|
||||
@ -1509,6 +1512,8 @@ class PlatformAutoGen(AutoGen):
|
||||
if Tool not in ToolDef or Family == "":
|
||||
continue
|
||||
# option has been added before
|
||||
if TAB_TOD_DEFINES_FAMILY not in ToolDef[Tool]:
|
||||
continue
|
||||
if Family != ToolDef[Tool][TAB_TOD_DEFINES_FAMILY]:
|
||||
continue
|
||||
|
||||
|
Reference in New Issue
Block a user