2009-03-19 20:55:50 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2013-01-01 17:29:08 +01:00
|
|
|
* Copyright (C) 2007-2013 Daniel Marjamäki and Cppcheck team.
|
2009-03-19 20:55:50 +01:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2009-09-27 17:08:31 +02:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2009-03-19 20:55:50 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
2009-05-22 07:51:30 +02:00
|
|
|
// Auto variables checks
|
2009-03-19 20:55:50 +01:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#include "checkautovariables.h"
|
2011-01-16 19:57:29 +01:00
|
|
|
#include "symboldatabase.h"
|
2009-03-19 20:55:50 +01:00
|
|
|
|
2011-12-23 22:31:48 +01:00
|
|
|
#include <list>
|
2009-03-19 20:55:50 +01:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
// Register this check class into cppcheck by creating a static instance of it..
|
2011-10-13 20:53:06 +02:00
|
|
|
namespace {
|
|
|
|
static CheckAutoVariables instance;
|
2009-03-19 20:55:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-07-13 14:21:45 +02:00
|
|
|
bool CheckAutoVariables::isRefPtrArg(unsigned int varId)
|
2009-03-19 20:55:50 +01:00
|
|
|
{
|
2012-03-01 18:38:20 +01:00
|
|
|
const Variable *var = _tokenizer->getSymbolDatabase()->getVariableFromVarId(varId);
|
2011-04-23 15:50:56 +02:00
|
|
|
|
2012-07-13 14:21:45 +02:00
|
|
|
return(var && var->isArgument() && var->isReference() && var->isPointer());
|
2012-03-01 18:38:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CheckAutoVariables::isPtrArg(unsigned int varId)
|
|
|
|
{
|
|
|
|
const Variable *var = _tokenizer->getSymbolDatabase()->getVariableFromVarId(varId);
|
2009-03-19 20:55:50 +01:00
|
|
|
|
2012-03-01 18:38:20 +01:00
|
|
|
return(var && var->isArgument() && var->isPointer());
|
2009-03-19 20:55:50 +01:00
|
|
|
}
|
2009-07-27 19:34:17 +02:00
|
|
|
|
2009-08-16 10:46:52 +02:00
|
|
|
bool CheckAutoVariables::isAutoVar(unsigned int varId)
|
2009-03-19 20:55:50 +01:00
|
|
|
{
|
2011-04-23 15:50:56 +02:00
|
|
|
const Variable *var = _tokenizer->getSymbolDatabase()->getVariableFromVarId(varId);
|
2009-08-16 11:43:04 +02:00
|
|
|
|
2012-03-01 18:38:20 +01:00
|
|
|
if (!var || !var->isLocal() || var->isStatic())
|
2009-08-16 11:43:04 +02:00
|
|
|
return false;
|
|
|
|
|
2012-01-28 12:32:28 +01:00
|
|
|
if (var->isReference()) {
|
2011-08-10 18:16:31 +02:00
|
|
|
// address of reference variable can be taken if the address
|
|
|
|
// of the variable it points at is not a auto-var
|
|
|
|
// TODO: check what the reference variable references.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-04-23 15:50:56 +02:00
|
|
|
return true;
|
2009-08-09 15:40:04 +02:00
|
|
|
}
|
|
|
|
|
2011-04-23 15:50:56 +02:00
|
|
|
bool CheckAutoVariables::isAutoVarArray(unsigned int varId)
|
2009-03-21 18:36:41 +01:00
|
|
|
{
|
2011-04-23 15:50:56 +02:00
|
|
|
const Variable *var = _tokenizer->getSymbolDatabase()->getVariableFromVarId(varId);
|
2009-07-27 19:34:17 +02:00
|
|
|
|
2012-03-01 18:38:20 +01:00
|
|
|
return (var && var->isLocal() && !var->isStatic() && var->isArray());
|
|
|
|
}
|
2009-07-27 19:34:17 +02:00
|
|
|
|
2012-03-01 18:38:20 +01:00
|
|
|
// Verification that we really take the address of a local variable
|
|
|
|
static bool checkRvalueExpression(const Variable* var, const Token* next)
|
|
|
|
{
|
|
|
|
return((next->str() != "." || (!var->isPointer() && (!var->isClass() || var->type()))) && next->strAt(2) != ".");
|
2009-08-09 15:40:04 +02:00
|
|
|
}
|
|
|
|
|
2009-03-19 20:55:50 +01:00
|
|
|
void CheckAutoVariables::autoVariables()
|
|
|
|
{
|
2011-02-08 01:26:34 +01:00
|
|
|
const SymbolDatabase *symbolDatabase = _tokenizer->getSymbolDatabase();
|
2009-03-19 20:55:50 +01:00
|
|
|
|
2012-10-12 06:15:46 +02:00
|
|
|
const std::size_t functions = symbolDatabase->functionScopes.size();
|
|
|
|
for (std::size_t i = 0; i < functions; ++i) {
|
|
|
|
const Scope * scope = symbolDatabase->functionScopes[i];
|
2012-01-08 15:32:22 +01:00
|
|
|
for (const Token *tok = scope->classStart; tok && tok != scope->classEnd; tok = tok->next()) {
|
2012-03-01 18:38:20 +01:00
|
|
|
// Critical assignment
|
2012-07-13 14:21:45 +02:00
|
|
|
if (Token::Match(tok, "[;{}] %var% = & %var%") && isRefPtrArg(tok->next()->varId()) && isAutoVar(tok->tokAt(4)->varId())) {
|
2012-03-01 18:38:20 +01:00
|
|
|
const Variable * var = symbolDatabase->getVariableFromVarId(tok->tokAt(4)->varId());
|
|
|
|
if (checkRvalueExpression(var, tok->tokAt(5)))
|
|
|
|
errorAutoVariableAssignment(tok->next(), false);
|
|
|
|
} else if (Token::Match(tok, "[;{}] * %var% = & %var%") && isPtrArg(tok->tokAt(2)->varId()) && isAutoVar(tok->tokAt(5)->varId())) {
|
2011-05-07 00:18:48 +02:00
|
|
|
const Variable * var = symbolDatabase->getVariableFromVarId(tok->tokAt(5)->varId());
|
2012-03-01 18:38:20 +01:00
|
|
|
if (checkRvalueExpression(var, tok->tokAt(6)))
|
2011-09-02 02:34:31 +02:00
|
|
|
errorAutoVariableAssignment(tok->next(), false);
|
2011-10-13 20:53:06 +02:00
|
|
|
} else if (Token::Match(tok, "[;{}] %var% . %var% = & %var%")) {
|
2011-08-09 18:24:39 +02:00
|
|
|
// TODO: check if the parameter is only changed temporarily (#2969)
|
2011-10-13 20:53:06 +02:00
|
|
|
if (_settings->inconclusive) {
|
2011-11-20 15:09:57 +01:00
|
|
|
const Variable * var1 = symbolDatabase->getVariableFromVarId(tok->next()->varId());
|
2012-03-01 18:38:20 +01:00
|
|
|
if (var1 && var1->isArgument() && var1->isPointer()) {
|
2011-08-09 18:24:39 +02:00
|
|
|
const Variable * var2 = symbolDatabase->getVariableFromVarId(tok->tokAt(6)->varId());
|
2012-03-01 18:38:20 +01:00
|
|
|
if (isAutoVar(tok->tokAt(6)->varId()) && checkRvalueExpression(var2, tok->tokAt(7)))
|
|
|
|
errorAutoVariableAssignment(tok->next(), true);
|
2011-08-09 18:24:39 +02:00
|
|
|
}
|
2011-07-22 04:26:42 +02:00
|
|
|
}
|
2011-07-22 04:37:36 +02:00
|
|
|
tok = tok->tokAt(6);
|
2011-10-13 20:53:06 +02:00
|
|
|
} else if (Token::Match(tok, "[;{}] %var% . %var% = %var% ;")) {
|
2011-08-09 18:24:39 +02:00
|
|
|
// TODO: check if the parameter is only changed temporarily (#2969)
|
2011-10-13 20:53:06 +02:00
|
|
|
if (_settings->inconclusive) {
|
2011-11-20 15:09:57 +01:00
|
|
|
const Variable * var1 = symbolDatabase->getVariableFromVarId(tok->next()->varId());
|
2012-03-01 18:38:20 +01:00
|
|
|
if (var1 && var1->isArgument() && var1->isPointer()) {
|
|
|
|
if (isAutoVarArray(tok->tokAt(5)->varId()))
|
|
|
|
errorAutoVariableAssignment(tok->next(), true);
|
2011-08-09 18:24:39 +02:00
|
|
|
}
|
2011-07-22 14:31:31 +02:00
|
|
|
}
|
|
|
|
tok = tok->tokAt(5);
|
2011-10-13 20:53:06 +02:00
|
|
|
} else if (Token::Match(tok, "[;{}] * %var% = %var% ;")) {
|
2011-07-21 01:02:54 +02:00
|
|
|
const Variable * var1 = symbolDatabase->getVariableFromVarId(tok->tokAt(2)->varId());
|
2011-10-13 20:53:06 +02:00
|
|
|
if (var1 && var1->isArgument() && Token::Match(var1->nameToken()->tokAt(-3), "%type% * *")) {
|
2012-03-01 18:38:20 +01:00
|
|
|
if (isAutoVarArray(tok->tokAt(4)->varId()))
|
2011-09-02 02:34:31 +02:00
|
|
|
errorAutoVariableAssignment(tok->next(), false);
|
2011-07-21 01:02:54 +02:00
|
|
|
}
|
|
|
|
tok = tok->tokAt(4);
|
2012-03-01 18:38:20 +01:00
|
|
|
} else if (Token::Match(tok, "[;{}] %var% [") && Token::Match(tok->linkAt(2), "] = & %var%") && isPtrArg(tok->next()->varId()) && isAutoVar(tok->linkAt(2)->tokAt(3)->varId())) {
|
|
|
|
const Token* const varTok = tok->linkAt(2)->tokAt(3);
|
|
|
|
const Variable * var = symbolDatabase->getVariableFromVarId(varTok->varId());
|
|
|
|
if (checkRvalueExpression(var, varTok->next()))
|
|
|
|
errorAutoVariableAssignment(tok->next(), false);
|
2011-02-08 01:26:34 +01:00
|
|
|
}
|
|
|
|
// Critical return
|
2011-10-13 20:53:06 +02:00
|
|
|
else if (Token::Match(tok, "return & %var% ;") && isAutoVar(tok->tokAt(2)->varId())) {
|
2011-07-21 14:50:38 +02:00
|
|
|
errorReturnAddressToAutoVariable(tok);
|
2011-10-13 20:53:06 +02:00
|
|
|
} else if (Token::Match(tok, "return & %var% [") &&
|
2011-11-20 14:22:39 +01:00
|
|
|
Token::simpleMatch(tok->linkAt(3), "] ;") &&
|
2011-10-13 20:53:06 +02:00
|
|
|
isAutoVarArray(tok->tokAt(2)->varId())) {
|
2011-08-20 21:08:30 +02:00
|
|
|
errorReturnAddressToAutoVariable(tok);
|
2011-10-13 20:53:06 +02:00
|
|
|
} else if (Token::Match(tok, "return & %var% ;") && tok->tokAt(2)->varId()) {
|
2011-09-01 03:36:31 +02:00
|
|
|
const Variable * var1 = symbolDatabase->getVariableFromVarId(tok->tokAt(2)->varId());
|
2011-09-02 16:39:04 +02:00
|
|
|
if (var1 && var1->isArgument() && var1->typeEndToken()->str() != "&")
|
2011-09-01 03:36:31 +02:00
|
|
|
errorReturnAddressOfFunctionParameter(tok, tok->strAt(2));
|
|
|
|
}
|
2011-02-08 01:26:34 +01:00
|
|
|
// Invalid pointer deallocation
|
2012-04-26 16:44:33 +02:00
|
|
|
else if (Token::Match(tok, "free ( %var% ) ;") || Token::Match(tok, "delete [| ]| (| %var% !![")) {
|
|
|
|
tok = Token::findmatch(tok->next(), "%var%");
|
|
|
|
if (isAutoVarArray(tok->varId()))
|
|
|
|
errorInvalidDeallocation(tok);
|
2009-06-09 19:45:58 +02:00
|
|
|
}
|
|
|
|
}
|
2011-02-08 01:26:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void CheckAutoVariables::returnPointerToLocalArray()
|
|
|
|
{
|
|
|
|
const SymbolDatabase *symbolDatabase = _tokenizer->getSymbolDatabase();
|
|
|
|
|
2012-10-12 06:15:46 +02:00
|
|
|
const std::size_t functions = symbolDatabase->functionScopes.size();
|
|
|
|
for (std::size_t i = 0; i < functions; ++i) {
|
|
|
|
const Scope * scope = symbolDatabase->functionScopes[i];
|
|
|
|
if (!scope->function)
|
2011-02-08 01:26:34 +01:00
|
|
|
continue;
|
|
|
|
|
2012-03-01 18:38:20 +01:00
|
|
|
const Token *tok = scope->function->tokenDef;
|
2011-02-08 01:26:34 +01:00
|
|
|
|
|
|
|
// have we reached a function that returns a pointer
|
2012-01-08 15:32:22 +01:00
|
|
|
if (tok->previous() && tok->previous()->str() == "*") {
|
2012-10-12 06:15:46 +02:00
|
|
|
for (const Token *tok2 = scope->classStart->next(); tok2 && tok2 != scope->classEnd; tok2 = tok2->next()) {
|
2011-02-08 01:26:34 +01:00
|
|
|
// Return pointer to local array variable..
|
2011-10-13 20:53:06 +02:00
|
|
|
if (Token::Match(tok2, "return %var% ;")) {
|
2011-02-08 01:26:34 +01:00
|
|
|
const unsigned int varid = tok2->next()->varId();
|
2012-06-22 11:21:51 +02:00
|
|
|
if (isAutoVarArray(varid)) {
|
2011-02-08 01:26:34 +01:00
|
|
|
errorReturnPointerToLocalArray(tok2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-06-09 19:45:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-21 14:50:38 +02:00
|
|
|
void CheckAutoVariables::errorReturnAddressToAutoVariable(const Token *tok)
|
|
|
|
{
|
2012-07-07 20:31:18 +02:00
|
|
|
reportError(tok, Severity::error, "returnAddressOfAutoVariable", "Address of an auto-variable returned.");
|
2011-07-21 14:50:38 +02:00
|
|
|
}
|
|
|
|
|
2009-06-09 19:45:58 +02:00
|
|
|
void CheckAutoVariables::errorReturnPointerToLocalArray(const Token *tok)
|
|
|
|
{
|
2012-07-07 20:31:18 +02:00
|
|
|
reportError(tok, Severity::error, "returnLocalVariable", "Pointer to local array variable returned.");
|
2009-06-09 19:45:58 +02:00
|
|
|
}
|
|
|
|
|
2011-08-09 18:24:39 +02:00
|
|
|
void CheckAutoVariables::errorAutoVariableAssignment(const Token *tok, bool inconclusive)
|
2009-10-04 11:45:45 +02:00
|
|
|
{
|
2011-10-13 20:53:06 +02:00
|
|
|
if (!inconclusive) {
|
2011-08-09 18:24:39 +02:00
|
|
|
reportError(tok, Severity::error, "autoVariables",
|
2012-07-07 20:31:18 +02:00
|
|
|
"Address of local auto-variable assigned to a function parameter.\n"
|
2012-07-08 11:38:58 +02:00
|
|
|
"Dangerous assignment - the function parameter is assigned the address of a local "
|
2012-07-07 20:31:18 +02:00
|
|
|
"auto-variable. Local auto-variables are reserved from the stack which "
|
|
|
|
"is freed when the function ends. So the pointer to a local variable "
|
2011-08-09 18:24:39 +02:00
|
|
|
"is invalid after the function ends.");
|
2011-10-13 20:53:06 +02:00
|
|
|
} else {
|
2012-05-06 19:37:41 +02:00
|
|
|
reportError(tok, Severity::error, "autoVariables",
|
2012-07-07 20:31:18 +02:00
|
|
|
"Address of local auto-variable assigned to a function parameter.\n"
|
|
|
|
"Function parameter is assigned the address of a local auto-variable. "
|
|
|
|
"Local auto-variables are reserved from the stack which is freed when "
|
2012-05-06 19:37:41 +02:00
|
|
|
"the function ends. The address is invalid after the function ends and it "
|
|
|
|
"might 'leak' from the function through the parameter.", true);
|
2011-08-09 18:24:39 +02:00
|
|
|
}
|
2009-10-04 11:45:45 +02:00
|
|
|
}
|
2009-03-19 20:55:50 +01:00
|
|
|
|
2011-09-01 03:36:31 +02:00
|
|
|
void CheckAutoVariables::errorReturnAddressOfFunctionParameter(const Token *tok, const std::string &varname)
|
|
|
|
{
|
|
|
|
reportError(tok, Severity::error, "returnAddressOfFunctionParameter",
|
2012-07-07 20:31:18 +02:00
|
|
|
"Address of function parameter '" + varname + "' returned.\n"
|
|
|
|
"Address of the function parameter '" + varname + "' becomes invalid after the function exits because "
|
|
|
|
"function parameters are stored on the stack which is freed when the function exits. Thus the returned "
|
|
|
|
"value is invalid.");
|
2011-09-01 03:36:31 +02:00
|
|
|
}
|
|
|
|
|
2011-02-08 01:26:34 +01:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2010-01-27 19:16:32 +01:00
|
|
|
// return temporary?
|
2012-10-14 17:30:37 +02:00
|
|
|
bool CheckAutoVariables::returnTemporary(const Token *tok, const Scope *startScope) const
|
2010-01-27 19:16:32 +01:00
|
|
|
{
|
2012-07-19 16:42:56 +02:00
|
|
|
const SymbolDatabase *symbolDatabase = _tokenizer->getSymbolDatabase();
|
|
|
|
|
2012-08-22 13:08:32 +02:00
|
|
|
bool func = false; // Might it be a function call?
|
2012-07-19 16:42:56 +02:00
|
|
|
bool retref = false; // is there such a function that returns a reference?
|
|
|
|
bool retvalue = false; // is there such a function that returns a value?
|
|
|
|
|
2012-10-14 17:30:37 +02:00
|
|
|
const Function *function = symbolDatabase->findFunctionByNameAndArgs(tok, startScope);
|
|
|
|
if (function) {
|
|
|
|
retref = function->tokenDef->strAt(-1) == "&";
|
|
|
|
if (!retref) {
|
|
|
|
const Token *start = function->tokenDef;
|
|
|
|
while (start->previous() && !Token::Match(start->previous(), ";|}|{|public:|private:|protected:")) {
|
|
|
|
if ((start->str() == ")" || start->str() == ">") && start->link())
|
|
|
|
start = start->link();
|
|
|
|
start = start->previous();
|
|
|
|
}
|
|
|
|
if (start->str() == "const")
|
|
|
|
start = start->next();
|
|
|
|
if (start->str() == "::")
|
|
|
|
start = start->next();
|
|
|
|
|
|
|
|
if (Token::simpleMatch(start, "std ::")) {
|
|
|
|
if (start->strAt(3) != "<" || !Token::simpleMatch(start->linkAt(3), "> ::"))
|
|
|
|
retvalue = true;
|
|
|
|
else
|
|
|
|
retref = true; // Assume that a reference is returned
|
|
|
|
} else {
|
|
|
|
if (symbolDatabase->isClassOrStruct(start->str()))
|
|
|
|
retvalue = true;
|
|
|
|
else
|
|
|
|
retref = true;
|
2012-07-19 16:42:56 +02:00
|
|
|
}
|
|
|
|
}
|
2012-10-14 17:30:37 +02:00
|
|
|
func = true;
|
2012-07-19 16:42:56 +02:00
|
|
|
}
|
2012-10-14 17:30:37 +02:00
|
|
|
if (!func && symbolDatabase->isClassOrStruct(tok->str()))
|
2012-08-22 13:08:32 +02:00
|
|
|
return true;
|
2012-07-19 16:42:56 +02:00
|
|
|
|
|
|
|
return bool(!retref && retvalue);
|
2010-01-27 19:16:32 +01:00
|
|
|
}
|
|
|
|
|
2011-02-08 01:26:34 +01:00
|
|
|
//---------------------------------------------------------------------------
|
2010-01-27 19:16:32 +01:00
|
|
|
|
2010-01-23 20:39:12 +01:00
|
|
|
void CheckAutoVariables::returnReference()
|
|
|
|
{
|
2011-02-08 01:26:34 +01:00
|
|
|
const SymbolDatabase *symbolDatabase = _tokenizer->getSymbolDatabase();
|
|
|
|
|
2012-10-12 06:15:46 +02:00
|
|
|
const std::size_t functions = symbolDatabase->functionScopes.size();
|
|
|
|
for (std::size_t i = 0; i < functions; ++i) {
|
|
|
|
const Scope * scope = symbolDatabase->functionScopes[i];
|
|
|
|
if (!scope->function)
|
2010-01-23 20:39:12 +01:00
|
|
|
continue;
|
2011-02-08 01:26:34 +01:00
|
|
|
|
2012-03-01 18:38:20 +01:00
|
|
|
const Token *tok = scope->function->tokenDef;
|
2010-01-23 20:39:12 +01:00
|
|
|
|
|
|
|
// have we reached a function that returns a reference?
|
2012-01-08 15:32:22 +01:00
|
|
|
if (tok->previous() && tok->previous()->str() == "&") {
|
2012-10-12 06:15:46 +02:00
|
|
|
for (const Token *tok2 = scope->classStart->next(); tok2 && tok2 != scope->classEnd; tok2 = tok2->next()) {
|
2011-02-08 01:26:34 +01:00
|
|
|
// return..
|
2011-10-13 20:53:06 +02:00
|
|
|
if (Token::Match(tok2, "return %var% ;")) {
|
2011-02-08 01:26:34 +01:00
|
|
|
// is the returned variable a local variable?
|
2011-12-26 07:44:16 +01:00
|
|
|
const unsigned int varid1 = tok2->next()->varId();
|
|
|
|
const Variable *var1 = symbolDatabase->getVariableFromVarId(varid1);
|
|
|
|
|
2012-06-22 11:21:51 +02:00
|
|
|
if (isAutoVar(varid1)) {
|
2011-12-26 07:44:16 +01:00
|
|
|
// If reference variable is used, check what it references
|
2012-03-28 18:21:06 +02:00
|
|
|
if (Token::Match(var1->nameToken(), "%var% [=(]")) {
|
2011-12-26 07:44:16 +01:00
|
|
|
const Token *tok3 = var1->nameToken()->tokAt(2);
|
2012-03-28 18:21:06 +02:00
|
|
|
if (!Token::Match(tok3, "%var% [);.]"))
|
2011-12-26 07:44:16 +01:00
|
|
|
continue;
|
|
|
|
|
|
|
|
// Only report error if variable that is referenced is
|
|
|
|
// a auto variable
|
2012-06-22 11:21:51 +02:00
|
|
|
if (!isAutoVar(tok3->varId()))
|
2011-12-26 07:44:16 +01:00
|
|
|
continue;
|
|
|
|
}
|
2011-12-26 07:58:02 +01:00
|
|
|
|
2010-01-27 19:16:32 +01:00
|
|
|
// report error..
|
2011-02-08 01:26:34 +01:00
|
|
|
errorReturnReference(tok2);
|
2010-01-27 19:16:32 +01:00
|
|
|
}
|
2010-01-23 20:39:12 +01:00
|
|
|
}
|
2011-02-08 01:26:34 +01:00
|
|
|
|
|
|
|
// return reference to temporary..
|
2012-10-14 17:30:37 +02:00
|
|
|
else if (Token::Match(tok2, "return %var% (") &&
|
|
|
|
Token::simpleMatch(tok2->linkAt(2), ") ;")) {
|
|
|
|
if (returnTemporary(tok2->next(), scope)) {
|
|
|
|
// report error..
|
|
|
|
errorReturnTempReference(tok2);
|
|
|
|
}
|
2011-02-08 01:26:34 +01:00
|
|
|
}
|
2010-01-23 20:39:12 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CheckAutoVariables::errorReturnReference(const Token *tok)
|
|
|
|
{
|
2012-07-07 20:31:18 +02:00
|
|
|
reportError(tok, Severity::error, "returnReference", "Reference to auto variable returned.");
|
2010-01-23 20:39:12 +01:00
|
|
|
}
|
|
|
|
|
2010-01-27 19:16:32 +01:00
|
|
|
void CheckAutoVariables::errorReturnTempReference(const Token *tok)
|
|
|
|
{
|
2012-07-07 20:31:18 +02:00
|
|
|
reportError(tok, Severity::error, "returnTempReference", "Reference to temporary returned.");
|
2010-01-27 19:16:32 +01:00
|
|
|
}
|
|
|
|
|
2011-07-21 14:50:38 +02:00
|
|
|
void CheckAutoVariables::errorInvalidDeallocation(const Token *tok)
|
|
|
|
{
|
2011-12-30 10:32:55 +01:00
|
|
|
reportError(tok,
|
|
|
|
Severity::error,
|
|
|
|
"autovarInvalidDeallocation",
|
2012-07-07 20:31:18 +02:00
|
|
|
"Deallocation of an auto-variable results in undefined behaviour.\n"
|
2012-07-08 11:38:58 +02:00
|
|
|
"The deallocation of an auto-variable results in undefined behaviour. You should only free memory "
|
2011-12-30 10:32:55 +01:00
|
|
|
"that has been allocated dynamically.");
|
2011-07-21 14:50:38 +02:00
|
|
|
}
|