Crash Due To "stack Corruption Detected: Aborted"
I recently received complaint from a user that my app was crashing. I've extracted the following from the user's error logs and was able to see why issues where happening: 12-17 1
Solution 1:
The message indicates corruption of the native stack. Code to detect stack buffer overflows is inserted when the gcc flag "-fstack-protector" is used.
If your app doesn't have any JNI code, then this could very well be a bug in the Android platform.
If you have a way to reproduce this, please file a bug on b.android.com with the details.
Post a Comment for "Crash Due To "stack Corruption Detected: Aborted""