FATAL: attempt to release access, but the mutator does not have access

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?

+4
source share
1 answer

If you use Realm, there is a possibility that you are faced with the following problem:

https://github.com/realm/realm-js/issues/1095

, , -, JS ( , ).

+2

Source: https://habr.com/ru/post/1679986/


All Articles