Resolve CID 1037105

This commit is contained in:
Dmitry-Me 2014-08-06 10:05:32 +04:00
parent 8bbbb54f94
commit 644d83e91b
1 changed files with 6 additions and 4 deletions

View File

@ -756,10 +756,12 @@ static bool if_findCompare(const Token * const tokBack, bool str)
if (Token::Match(tok,",|==|!="))
return true;
if (str && tok->isComparisonOp())
return true;
if (tok->isArithmeticalOp()) // result is used in some calculation
return true; // TODO: check if there is a comparison of the result somewhere
if (tok) {
if (str && tok->isComparisonOp())
return true;
if (tok->isArithmeticalOp()) // result is used in some calculation
return true; // TODO: check if there is a comparison of the result somewhere
}
return false;
}