-
Notifications
You must be signed in to change notification settings - Fork 578
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
crashlytics-ndk crashes when app exit #1749
Labels
Comments
I found a few problems with this issue:
|
Thanks for reporting this @fbafelipe - we'll prioritize fixing this asap. |
@fbafelipe a fix has been submitted and should roll out with the next release. |
@fbafelipe the fix for this issue has been released, please upgrade to the latest SDK & let us know if the issue still persists! |
@kmandrika I tried the new version. It did fix the problem. Thanks! |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Steps to reproduce:
When my app exit, by calling exit(0) on native code, the app crashes. After some investigation, the crash seems to be on crashlytics-ndk itself. Removing crashlytics-ndk (keeping crashlytics), stops the crashes.
Relevant Code:
I checked the source code from crashlytics-ndk, I might be wrong, but the problem seems to be detail::breakpad_context being allocated by a custom allocator on install.cpp:131 (function install_signal_handler), but it is being free'd by just calling delete on install.cpp:71 (function finalize, this is the line crashing).
The text was updated successfully, but these errors were encountered: