Memory leak : Completly fix false positive when using callbacks (Bug 2458510)
This commit is contained in:
parent
5b42b5777e
commit
2e439d8cea
|
@ -587,10 +587,19 @@ TOKEN *CheckMemoryLeakClass::getcode(const TOKEN *tok, std::list<const TOKEN *>
|
|||
}
|
||||
|
||||
// Callback..
|
||||
if ( TOKEN::Match(tok, "( * %var% ) (") ||
|
||||
TOKEN::Match(tok, "( %var% ) (") )
|
||||
bool matchFirst;
|
||||
if ( (matchFirst = TOKEN::Match(tok, "( %var%")) ||
|
||||
TOKEN::Match(tok, "( * %var%") )
|
||||
{
|
||||
for ( const TOKEN *tok2 = tok->tokAt(4); tok2; tok2 = tok2->next() )
|
||||
int tokIdx = matchFirst ? 2 : 3;
|
||||
|
||||
while ( TOKEN::simpleMatch(tok->tokAt(tokIdx), ".") &&
|
||||
TOKEN::Match(tok->tokAt(tokIdx + 1), "%var%") )
|
||||
tokIdx += 2;
|
||||
|
||||
if ( TOKEN::simpleMatch(tok->tokAt(tokIdx), ") (") )
|
||||
{
|
||||
for ( const TOKEN *tok2 = tok->tokAt(tokIdx + 2); tok2; tok2 = tok2->next() )
|
||||
{
|
||||
if ( TOKEN::Match(tok2, "[;{]") )
|
||||
break;
|
||||
|
@ -601,6 +610,7 @@ TOKEN *CheckMemoryLeakClass::getcode(const TOKEN *tok, std::list<const TOKEN *>
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Linux lists..
|
||||
if ( TOKEN::Match( tok, "[=(,] & %var1% [.[]", varnames ) )
|
||||
|
|
|
@ -126,6 +126,7 @@ private:
|
|||
TEST_CASE( func8 ); // Using callback
|
||||
TEST_CASE( func9 ); // Embedding the function call in a if-condition
|
||||
TEST_CASE( func10 ); // Bug 2458510 - Function pointer
|
||||
TEST_CASE( func11 ); // Bug 2458510 - Function pointer
|
||||
|
||||
TEST_CASE( class1 );
|
||||
TEST_CASE( class2 );
|
||||
|
@ -1012,6 +1013,16 @@ private:
|
|||
ASSERT_EQUALS( std::string(""), errout.str() );
|
||||
}
|
||||
|
||||
void func11()
|
||||
{
|
||||
check( "static void f(struct1 *s1)\n"
|
||||
"{\n"
|
||||
" char *c = malloc(50);\n"
|
||||
" (s1->fnc)(c);\n"
|
||||
"}\n" );
|
||||
ASSERT_EQUALS( std::string(""), errout.str() );
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
void func3()
|
||||
|
|
Loading…
Reference in New Issue