diff options
author | Anna Zaks <ganna@apple.com> | 2012-03-30 05:48:16 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2012-03-30 05:48:16 +0000 |
commit | 90ab9bfa111fcf567a089ec35f232708466df647 (patch) | |
tree | c64b8a97c2673daffe987b2bba10b76b07af40f9 /clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp | |
parent | 54fd4a076695a480ca55f2c35444fc82842a5bc7 (diff) | |
download | bcm5719-llvm-90ab9bfa111fcf567a089ec35f232708466df647.tar.gz bcm5719-llvm-90ab9bfa111fcf567a089ec35f232708466df647.zip |
[analyzer]Malloc,RetainRelease: Allow pointer to escape via NSMapInsert.
Fixes a false positive (radar://11152419). The current solution of
adding the info into 3 places is quite ugly. Pending a generic pointer
escapes callback.
llvm-svn: 153731
Diffstat (limited to 'clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp')
-rw-r--r-- | clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp b/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp index 7b9adb7c157..7456af23441 100644 --- a/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp +++ b/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp @@ -1262,6 +1262,11 @@ bool MallocChecker::doesNotFreeMemory(const CallOrObjCMessage *Call, return false; } + // Whitelist NSXXInsertXX, for example NSMapInsertIfAbsent, since they can + // be deallocated by NSMapRemove. + if (FName.startswith("NS") && (FName.find("Insert") != StringRef::npos)) + return false; + // Otherwise, assume that the function does not free memory. // Most system calls, do not free the memory. return true; |