Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix/suppress findings reported by Coverity #216

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/lib/cwe-mapper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ struct CweMap::Private {
bool detectedByTool(Defect def, const char *tool) const;
};

// coverity[pass_by_value]
bool CweMap::Private::detectedByTool(Defect def, const char *tool) const
{
// detect tool in case it is not explicitly specified
Expand Down
4 changes: 2 additions & 2 deletions src/lib/filter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ void appendCtxLines(
evt.event = "#";
evt.msg = str.str();
evt.verbosityLevel = /* not a key event */ 1;
pDst->push_back(evt);
pDst->push_back(std::move(evt));
}
}

Expand Down Expand Up @@ -202,7 +202,7 @@ bool DuplicateFilter::matchDef(const Defect &def)
evt.fileName = MsgFilter::inst().filterPath(evt.fileName);
evt.msg = MsgFilter::inst().filterMsg(evt.msg, def.checker);

return d->lookup.insert(evt)./* inserted */second;
return d->lookup.insert(std::move(evt))./* inserted */second;
}


Expand Down
4 changes: 2 additions & 2 deletions src/lib/instream.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@

#include "instream.hh"

InStream::InStream(std::string fileName, const bool silent):
fileName_(std::move(fileName)),
InStream::InStream(const std::string &fileName, const bool silent):
fileName_(fileName),
silent_(silent),
str_((fileName_ == "-")
? std::cin
Expand Down
2 changes: 1 addition & 1 deletion src/lib/instream.hh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ struct InFileException {

class InStream {
public:
InStream(std::string fileName, bool silent = false);
InStream(const std::string &fileName, bool silent = false);
InStream(std::istringstream &str, bool silent = false);
~InStream() = default;

Expand Down
2 changes: 1 addition & 1 deletion src/lib/parser-cov.cc
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ bool KeyEventDigger::guessKeyEvent(Defect *def)
// no override for the checker -> match the lowered checker name
std::string str(def->checker);
boost::algorithm::to_lower(str);
defKeyEvent.insert(str);
defKeyEvent.insert(std::move(str));
}

// look for an explicitly defined key event
Expand Down
4 changes: 2 additions & 2 deletions src/lib/parser-gcc.cc
Original file line number Diff line number Diff line change
Expand Up @@ -549,13 +549,13 @@ bool BasicGccParser::getNext(Defect *pDef)
case T_INC:
case T_SCOPE:
done = this->exportAndReset(pDef);
defCurrent_.events.push_back(evt);
defCurrent_.events.push_back(std::move(evt));
break;

case T_MSG:
done = this->exportAndReset(pDef);
defCurrent_.keyEventIdx = defCurrent_.events.size();
defCurrent_.events.push_back(evt);
defCurrent_.events.push_back(std::move(evt));
hasKeyEvent_ = true;
break;

Expand Down
1 change: 0 additions & 1 deletion src/lib/parser-json-cov.cc
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,3 @@ bool CovTreeDecoder::readNode(Defect *def)

return true;
}

4 changes: 2 additions & 2 deletions src/lib/parser-json-sarif.cc
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ static void sarifReadLocation(DefEvent *pEvt, const pt::ptree &loc)
const auto uri = valueOf<std::string>(*al, "uri");
if (!uri.empty())
// read file name
pEvt->fileName = uri;
pEvt->fileName = std::move(uri);
}

const pt::ptree *reg;
Expand Down Expand Up @@ -247,7 +247,7 @@ static void sarifReadComments(Defect *pDef, const pt::ptree &relatedLocs)
continue;

evt.verbosityLevel = 1;
pDef->events.push_back(evt);
pDef->events.push_back(std::move(evt));
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/parser-json-simple.cc
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ bool SimpleTreeDecoder::readNode(Defect *def)
if (-1 == evt.verbosityLevel)
verbosityLevelNeedsInit = true;

evtListDst.push_back(evt);
evtListDst.push_back(std::move(evt));
}

// read "defect_id", "cwe", and "function" if available
Expand Down
2 changes: 1 addition & 1 deletion src/lib/parser-json-zap.cc
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ void ZapTreeDecoder::readScanProps(
{
const auto version = valueOf<std::string>(*root, "@version");
if (!version.empty())
(*pDst)["analyzer-version-owasp-zap"] = version;
(*pDst)["analyzer-version-owasp-zap"] = std::move(version);

d->timeStamp = valueOf<std::string>(*root, "@generated");
}
Expand Down
4 changes: 2 additions & 2 deletions src/lib/parser-xml-valgrind.cc
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ bool /* continue */ skipLdArgs(
goto skip_arg;

// record path of the real binary being executed
*pExe = argVal;
*pExe = std::move(argVal);
++(*pIt);
return /* continue */ (itEnd != *pIt);

Expand Down Expand Up @@ -224,7 +224,7 @@ void readStack(Defect *pDef, const pt::ptree &stackNode)
}

// finally push the "note" event
pDef->events.push_back(noteEvt);
pDef->events.push_back(std::move(noteEvt));
}
}

Expand Down
Loading