diff --git a/lib/checkleakautovar.cpp b/lib/checkleakautovar.cpp index 138916c11..14b9b47eb 100644 --- a/lib/checkleakautovar.cpp +++ b/lib/checkleakautovar.cpp @@ -1045,7 +1045,11 @@ void CheckLeakAutoVar::functionCall(const Token *tokName, const Token *tokOpenin const VarInfo::AllocInfo sp_allocation(sp_af ? sp_af->groupId : (arrayDelete ? NEW_ARRAY : NEW), VarInfo::OWNED, allocTok); changeAllocStatus(varInfo, sp_allocation, vtok, vtok); } else { - checkTokenInsideExpression(arg, varInfo, /*inFuncCall*/ isLeakIgnore); + const Token* const nextArg = funcArg->nextArgument(); + do { + checkTokenInsideExpression(arg, varInfo, /*inFuncCall*/ isLeakIgnore); + arg = arg->next(); + } while ((nextArg && arg != nextArg) || (!nextArg && arg != tokOpeningPar->link())); } // TODO: check each token in argument expression (could contain multiple variables) argNr++; @@ -1111,7 +1115,7 @@ void CheckLeakAutoVar::ret(const Token *tok, VarInfo &varInfo, const bool isEndO for (const Token *tok2 = tok; tok2; tok2 = tok2->next()) { if (tok2->str() == ";") break; - if (!Token::Match(tok2, "return|(|{|,")) + if (!Token::Match(tok2, "return|(|{|,|*")) continue; const Token* tok3 = tok2->next(); diff --git a/test/testleakautovar.cpp b/test/testleakautovar.cpp index ad2212ff2..280c42834 100644 --- a/test/testleakautovar.cpp +++ b/test/testleakautovar.cpp @@ -942,6 +942,45 @@ private: "}\n"); ASSERT_EQUALS("[test.c:4]: (error) Dereferencing 'p' after it is deallocated / released\n", errout.str()); + + check("int g(int);\n" + "void f(int* p) {\n" + " free(p);\n" + " g(*p);\n" + "}\n" + "int h(int* p) {\n" + " free(p);\n" + " return g(*p);\n" + "}\n"); + ASSERT_EQUALS("[test.c:4]: (error) Dereferencing 'p' after it is deallocated / released\n" + "[test.c:7] -> [test.c:8]: (error) Returning/dereferencing 'p' after it is deallocated / released\n", + errout.str()); + + check("int g(int);\n" + "void f(int* p) {\n" + " free(p);\n" + " g(1 + *p);\n" + "}\n" + "int h(int* p) {\n" + " free(p);\n" + " return g(1 + *p);\n" + "}\n"); + ASSERT_EQUALS("[test.c:4]: (error) Dereferencing 'p' after it is deallocated / released\n" + "[test.c:7] -> [test.c:8]: (error) Returning/dereferencing 'p' after it is deallocated / released\n", + errout.str()); + + check("int g(int, int);\n" + "void f(int* p) {\n" + " free(p);\n" + " g(0, 1 + *p);\n" + "}\n" + "int h(int* p) {\n" + " free(p);\n" + " return g(0, 1 + *p);\n" + "}\n"); + ASSERT_EQUALS("[test.c:4]: (error) Dereferencing 'p' after it is deallocated / released\n" + "[test.c:7] -> [test.c:8]: (error) Returning/dereferencing 'p' after it is deallocated / released\n", + errout.str()); } void doublefree1() { // #3895