Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Crashes with EXC_BAD_ACCESS in iOS 17.2, built with Xcode 15.1, 15.2. #43

Open
rebbdif opened this issue Feb 8, 2024 · 2 comments
Open

Comments

@rebbdif
Copy link

rebbdif commented Feb 8, 2024

Sometimes it works fine. Sometimes app starts crushing at _setjmp(env) with EXC_BAD_ACCESS in the following code:

void __suspend(void* env, void** sp, void* ret, int retVal) {
    if (_setjmp(env)) return;
    char x; *sp = (void*)&x;
    _longjmp(ret, retVal);
}

Caused by await.

@funct7
Copy link

funct7 commented Feb 12, 2024

Are you running it on Apple Silicon? Because that' s when I started getting the same exception.
If so, it's probably not an issue with the iOS SDK.

@rebbdif
Copy link
Author

rebbdif commented Feb 21, 2024

Yes, I have M3 Pro chip

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants