From 83461d2ce88bdeb12b25c74beaca84dcd457e5a3 Mon Sep 17 00:00:00 2001 From: Hess Chen Date: Thu, 25 Jun 2015 08:10:51 +0000 Subject: [PATCH] BaseTools/Ecc: Fix a bug of determining boolean variable incorrectly Fix a bug of determining boolean variable incorrectly in C parser Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hess Chen Reviewed-by: YangX Li git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17711 6f19259b-4bc3-4df7-8a09-765794883524 --- BaseTools/Source/Python/Ecc/c.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BaseTools/Source/Python/Ecc/c.py b/BaseTools/Source/Python/Ecc/c.py index a25532af06..997e631c97 100644 --- a/BaseTools/Source/Python/Ecc/c.py +++ b/BaseTools/Source/Python/Ecc/c.py @@ -1172,6 +1172,8 @@ def GetVarInfo(PredVarList, FuncRecord, FullFileName, IsFuncCall=False, TargetTy else: TypeList = GetDataTypeFromModifier(Param.Modifier).split() Type = TypeList[-1] + if Type == '*' and len(TypeList) >= 2: + Type = TypeList[-2] if len(TypeList) > 1 and StarList != None: for Star in StarList: Type = Type.strip() -- 2.39.2