diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-05-18 23:14:34 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-05-18 23:14:34 +0000 |
commit | ba67f6aa95733aaa9d79c82a8802e67b84e5d8e5 (patch) | |
tree | 38813c081c0f6ef6b06fd812a16eed1bc869eb11 /lib/Analysis/CFRefCount.cpp | |
parent | 2aa39cd55cdb73f26fb9123e6b5a57e69fe43013 (diff) |
Fix PR 4230: Don't flag leaks of NSAutoreleasePools until we know that we aren' at the top-most scope of autorelease pools.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72065 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/CFRefCount.cpp')
-rw-r--r-- | lib/Analysis/CFRefCount.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Analysis/CFRefCount.cpp b/lib/Analysis/CFRefCount.cpp index fbe9582516..d3f6ffbb60 100644 --- a/lib/Analysis/CFRefCount.cpp +++ b/lib/Analysis/CFRefCount.cpp @@ -1438,6 +1438,10 @@ void RetainSummaryManager::InitializeMethodSummaries() { addInstMethSummary("NSPanel", NoTrackYet, "initWithContentRect", "styleMask", "backing", "defer", "screen", NULL); #endif + + // Don't track allocated autorelease pools yet, as it is okay to prematurely + // exit a method. + addClassMethSummary("NSAutoreleasePool", "alloc", NoTrackYet); // Create NSAssertionHandler summaries. addPanicSummary("NSAssertionHandler", "handleFailureInFunction", "file", |