-
Notifications
You must be signed in to change notification settings - Fork 18
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
_Unwind_GetIP
returns 0x0
, and then jumps to it.
#31
Comments
That's interesting, |
Ah, I forgot those. This is aarch64, running
and the
|
Could you provide a MCVE? |
You could see if it also happens on the existing example. Otherwise, I can try I guess, but it might be long. |
In certain cases (I'm not sure exactly which),
_Unwind_GetIP
inside of_Unwind_Backtrace
is returning a null pointer, and then jumping to it after the callback completes. This is my code:It's pretty much copied from
panic_handler.rs
, but pushed to a vec instead of immediately printed.An example panic results in:
Followed by a prefetch data abort when trying to read from 0x0.
The text was updated successfully, but these errors were encountered: