CPP: Fix false positives when member variable is released via capture inside lambda expression.

This commit is contained in:
Geoffrey White
2018-12-11 23:12:37 +00:00
parent 6efd481118
commit e408f18766
3 changed files with 4 additions and 3 deletions

View File

@@ -184,7 +184,9 @@ predicate freedInSameMethod(Resource r, Expr acquire) {
exists(Expr releaseExpr, string kind |
r.acquisitionWithRequiredKind(acquire, kind) and
releaseExpr = r.getAReleaseExpr(kind) and
releaseExpr.getEnclosingFunction() = acquire.getEnclosingFunction()
releaseExpr.getEnclosingFunction().getEnclosingAccessHolder*() = acquire.getEnclosingFunction()
// here, `getEnclosingAccessHolder*` allows us to go from a nested function or lambda
// expression to the class method enclosing it.
)
}

View File

@@ -11,7 +11,6 @@
| DeleteThis.cpp:127:3:127:20 | ... = ... | Resource d is acquired by class MyClass9 but not released anywhere in this class. |
| ExternalOwners.cpp:49:3:49:20 | ... = ... | Resource a is acquired by class MyScreen but not released anywhere in this class. |
| Lambda.cpp:7:3:7:21 | ... = ... | Resource r1 is acquired by class testLambda but not released anywhere in this class. |
| Lambda.cpp:12:3:12:21 | ... = ... | Resource r2 is acquired by class testLambda but not released anywhere in this class. |
| Lambda.cpp:24:3:24:21 | ... = ... | Resource r4 is acquired by class testLambda but not released anywhere in this class. |
| Lambda.cpp:26:3:26:21 | ... = ... | Resource r5 is acquired by class testLambda but not released anywhere in this class. |
| Lambda.cpp:29:3:29:21 | ... = ... | Resource r6 is acquired by class testLambda but not released in the destructor. It is released from deleter_for_r6 on line 40, so this function may need to be called from the destructor. |

View File

@@ -9,7 +9,7 @@ public:
delete [] r;
};
r2 = new char[4096]; // GOOD [FALSE POSITIVE]
r2 = new char[4096]; // GOOD
auto deleter2 = [this]() {
delete [] r2;
};