diff options
author | Anna Zaks <ganna@apple.com> | 2013-05-31 23:47:32 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2013-05-31 23:47:32 +0000 |
commit | a4bc5e120173fc6059cc119971f290067b8ba1e9 (patch) | |
tree | d5ecc8cac60f5eb6679d8489f52688cacbd4541f /clang/test/Analysis/Inputs/system-header-simulator-objc.h | |
parent | b1a4d9da3b7d48c40e6abee2acc9f6324dad7f84 (diff) | |
download | bcm5719-llvm-a4bc5e120173fc6059cc119971f290067b8ba1e9.tar.gz bcm5719-llvm-a4bc5e120173fc6059cc119971f290067b8ba1e9.zip |
[analyzer] Malloc checker should only escape the receiver when “[O init..]” is called.
Jordan has pointed out that it is valuable to warn in cases when the arguments to init escape.
For example, NSData initWithBytes id not going to free the memory.
llvm-svn: 183062
Diffstat (limited to 'clang/test/Analysis/Inputs/system-header-simulator-objc.h')
-rw-r--r-- | clang/test/Analysis/Inputs/system-header-simulator-objc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/test/Analysis/Inputs/system-header-simulator-objc.h b/clang/test/Analysis/Inputs/system-header-simulator-objc.h index ecc99e17c49..3e1d9555bbd 100644 --- a/clang/test/Analysis/Inputs/system-header-simulator-objc.h +++ b/clang/test/Analysis/Inputs/system-header-simulator-objc.h @@ -102,6 +102,7 @@ typedef double NSTimeInterval; + (id)dataWithBytesNoCopy:(void *)bytes length:(NSUInteger)length freeWhenDone:(BOOL)b; - (id)initWithBytesNoCopy:(void *)bytes length:(NSUInteger)length; - (id)initWithBytesNoCopy:(void *)bytes length:(NSUInteger)length freeWhenDone:(BOOL)b; +- (id)initWithBytes:(void *)bytes length:(NSUInteger) length; @end typedef struct { |