Skip to content

Commit

Permalink
Undo, add test
Browse files Browse the repository at this point in the history
  • Loading branch information
chrchr-github committed Aug 16, 2023
1 parent 71a9139 commit fa0f3d7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
4 changes: 1 addition & 3 deletions lib/valueflow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4256,13 +4256,11 @@ struct LifetimeStore {
}
};

static bool hasBorrowingVariables(const std::list<Variable>& vars, const std::vector<const Token*>& args/*, std::set<const Scope*>& scopes*/, int depth = 10)
static bool hasBorrowingVariables(const std::list<Variable>& vars, const std::vector<const Token*>& args, int depth = 10)
{
if (depth < 0)
return true;
return std::any_of(vars.cbegin(), vars.cend(), [&](const Variable& var) {
if (var.isStatic())
return false;
if (const ValueType* vt = var.valueType()) {
if (vt->pointer > 0 &&
std::none_of(args.begin(), args.end(), [vt](const Token* arg) {
Expand Down
11 changes: 11 additions & 0 deletions test/testvalueflow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7359,6 +7359,17 @@ class TestValueFlow : public TestFixture {
" if (llabs(0x80000000ffffffffL) == 0x7fffffff00000001L) {}\n"
"}\n";
valueOfTok(code, "f");

code = "struct T {\n"
" T();\n"
" static T a[6][64];\n"
" static T b[2][64];\n"
" static T c[64][64];\n"
" static T d[2][64];\n"
" static T e[64];\n"
" static T f[64];\n"
"};\n";
valueOfTok(code, "(");
}

void valueFlowCrashConstructorInitialization() { // #9577
Expand Down

0 comments on commit fa0f3d7

Please sign in to comment.