infer_clone/infer/tests/codetoanalyze/objcpp/errors/c_functions.mm

46 lines
887 B

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#import <Foundation/Foundation.h>
@interface A : NSObject
@property(strong) void (^block)(void);
@end
@implementation A
+ (instancetype)autoUpdating {
static A* a;
dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
a = [self alloc];
a.block = ^{
};
});
return a;
}
static void dispatch_once2(dispatch_once_t* predicate, dispatch_block_t block);
+ (instancetype)autoUpdating2 {
static A* a;
dispatch_once_t onceToken;
dispatch_once2(&onceToken, ^{
a = [self alloc];
a.block = ^{
};
});
return a;
}
@end
int main() {
A* a = [A autoUpdating];
A* a2 = [A autoUpdating2];
a.block();
a2.block(); // NPE here since dispatch_once2 is skipped
}