Uninitialized variables: Fixed false positive in new checking when variable is initialized in condition
This commit is contained in:
parent
6a4b1127aa
commit
419ae2a135
|
@ -1074,6 +1074,15 @@ bool CheckUninitVar::checkScopeForVariable(const Token *tok, const unsigned int
|
||||||
|
|
||||||
// Inner scope..
|
// Inner scope..
|
||||||
if (Token::Match(tok, "if (")) {
|
if (Token::Match(tok, "if (")) {
|
||||||
|
// initialization in condition..
|
||||||
|
const Token * const endToken = tok->next()->link();
|
||||||
|
for (const Token *tok2 = tok->tokAt(2); tok2 != endToken; tok2 = tok2->next()) {
|
||||||
|
if (tok2->varId() == varid) {
|
||||||
|
// TODO: better checks if this is initialization or usage
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// goto the {
|
// goto the {
|
||||||
tok = tok->next()->link()->next();
|
tok = tok->next()->link()->next();
|
||||||
|
|
||||||
|
|
|
@ -1722,6 +1722,14 @@ private:
|
||||||
"}\n");
|
"}\n");
|
||||||
ASSERT_EQUALS("[test.cpp:5]: (error) Uninitialized variable: x\n", errout.str());
|
ASSERT_EQUALS("[test.cpp:5]: (error) Uninitialized variable: x\n", errout.str());
|
||||||
|
|
||||||
|
// initialization in condition
|
||||||
|
checkUninitVar2("void f() {\n"
|
||||||
|
" int a;\n"
|
||||||
|
" if (init(&a)) { }\n"
|
||||||
|
" a++;\n"
|
||||||
|
"}\n");
|
||||||
|
ASSERT_EQUALS("", errout.str());
|
||||||
|
|
||||||
// return, break, continue
|
// return, break, continue
|
||||||
checkUninitVar2("void f() {\n"
|
checkUninitVar2("void f() {\n"
|
||||||
" int x;\n"
|
" int x;\n"
|
||||||
|
|
Loading…
Reference in New Issue