I’m working on an embedded platform (architecture is SH4), and my program crashed a few minutes ago with a SIGABRT.
Luckily, I was running under gdbserver, and the thread that was interrupted by this signal has this stack dump:
#0 0x2a7f1678 in raise () from /home/[user]/target/lib/libc.so.6
#1 0x2a7f2a4c in abort () from /home/[user]/target/lib/libc.so.6
#2 0x2a81ade0 in __libc_message () from /home/[user]/target/lib/libc.so.6
#3 0x2a81f3a8 in malloc_printerr () from /home/[user]/target/lib/libc.so.6
#4 0x2a8c3700 in _IO_wide_data_2 () from /home/[user]/target/lib/libc.so.6
Do you know what happened here? A bad free()? bad delete ? bad malloc?
What’s “_IO_wide_data_2” supposed to do?
I see the malloc_printerr() call that I don’t understand either.
Google gives me 234 results on this, but all of them are simply because the guys have that “function” in their backtrace.
Yes I think it’s one of these.
If the bug is easy reproducible, put a breakpoint in malloc.c, malloc_printerr. When debugger stops there, You’ll probably get full call stack and find the buggy place in Your code. I still don’t know why it happens, that after entering __libc_message, the call stack gets broken.
There is how I found this strange behaviour.
Simple app that deletes the same buffer twice:
Inside malloc_printerr the call stack looks like this:
After entering __libc_message:
Maybe it has something to do with attribute((noreturn)) and compiler optimization?