I am having trouble trying to figure out where to even look for this new problem that I see. I run react-nativeversion 0.44.1and I get a crash. The xcode log shows:
FATAL: Attempting to release access but the mutator does not have access.
In the stack trace, I see this UIApplicationMain:
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}
In trace UIApplicationMain:
0x113f2091d <+159>: movq 0x1099bf4(%rip), %rbx ; (void *)0x000000011042ad50: objc_release
What should I look for to find the cause of this problem?
source
share