diff options
author | Anna Zaks <ganna@apple.com> | 2012-05-03 23:50:28 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2012-05-03 23:50:28 +0000 |
commit | aca0ac58d2ae80d764e3832456667d7322445e0c (patch) | |
tree | 1567017774e9dd2a48fc094f2eb507521458934a /lib/StaticAnalyzer/Checkers/MallocChecker.cpp | |
parent | d964d6380945e0505b623050fe6a3f428008fc2a (diff) |
[analyzer] Allow pointers escape through calls containing callback args.
(Since we don't have a generic pointer escape callback, modify
ExprEngineCallAndReturn as well as the malloc checker.)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@156134 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer/Checkers/MallocChecker.cpp')
-rw-r--r-- | lib/StaticAnalyzer/Checkers/MallocChecker.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/StaticAnalyzer/Checkers/MallocChecker.cpp b/lib/StaticAnalyzer/Checkers/MallocChecker.cpp index 55c32ec1eb..1415184033 100644 --- a/lib/StaticAnalyzer/Checkers/MallocChecker.cpp +++ b/lib/StaticAnalyzer/Checkers/MallocChecker.cpp @@ -1285,6 +1285,11 @@ bool MallocChecker::doesNotFreeMemory(const CallOrObjCMessage *Call, if (FName.startswith("NS") && (FName.find("Insert") != StringRef::npos)) return false; + // If the call has a callback as an argument, assume the memory + // can be freed. + if (Call->hasNonZeroCallbackArg()) + return false; + // Otherwise, assume that the function does not free memory. // Most system calls, do not free the memory. return true; @@ -1312,6 +1317,11 @@ bool MallocChecker::doesNotFreeMemory(const CallOrObjCMessage *Call, return false; } + // If the call has a callback as an argument, assume the memory + // can be freed. + if (Call->hasNonZeroCallbackArg()) + return false; + // Otherwise, assume that the function does not free memory. // Most system calls, do not free the memory. return true; |