Fixed #1189 (false negative: using uninitialized variable i 'a[i] = 0;')

This commit is contained in:
Daniel Marjamäki 2010-01-09 22:26:05 +01:00
parent 0908728601
commit 4c641ed80c
2 changed files with 16 additions and 1 deletions

View File

@ -1600,6 +1600,13 @@ private:
if (tok.varId()) if (tok.varId())
{ {
// Used..
if (Token::Match(tok.previous(), "[[+-*/] %var% []+-*/]"))
{
use(foundError, checks, &tok);
return &tok;
}
if (Token::Match(tok.previous(), "[;{}] %var% =")) if (Token::Match(tok.previous(), "[;{}] %var% ="))
{ {
// using same variable rhs? // using same variable rhs?
@ -1663,7 +1670,7 @@ private:
const Token *tok2 = tok.next()->link(); const Token *tok2 = tok.next()->link();
if (Token::simpleMatch(tok2 ? tok2->next() : 0, "=")) if (Token::simpleMatch(tok2 ? tok2->next() : 0, "="))
{ {
ExecutionPath::bailOut(checks); ExecutionPath::bailOutVar(checks, tok.varId());
return &tok; return &tok;
} }
} }

View File

@ -1092,6 +1092,14 @@ private:
"}\n"); "}\n");
ASSERT_EQUALS("[test.cpp:6]: (error) Uninitialized variable: i\n", errout.str()); ASSERT_EQUALS("[test.cpp:6]: (error) Uninitialized variable: i\n", errout.str());
checkUninitVar("static void foo()\n"
"{\n"
" int ar[10];\n"
" int i;\n"
" ar[i] = 0;\n"
"}\n");
ASSERT_EQUALS("[test.cpp:5]: (error) Uninitialized variable: i\n", errout.str());
checkUninitVar("static void foo()\n" checkUninitVar("static void foo()\n"
"{\n" "{\n"
" int x, y;\n" " int x, y;\n"