linux - C++ application crash -
c++ application gets crashed core file showing error
warning: no loadable sections found in added symbol-file system-supplied dso @ 0x7fff79e54000 core generated `./server'. program terminated signal 6, aborted. #0 0x0000003b67230265 in raise () /lib64/libc.so.6 (gdb) bt #0 0x0000003b67230265 in raise () /lib64/libc.so.6 #1 0x0000003b67231d10 in abort () /lib64/libc.so.6 #2 0x0000003b6726a9bb in __libc_message () /lib64/libc.so.6 #3 0x0000003b6727247f in _int_free () /lib64/libc.so.6 #4 0x0000003b672728db in free () /lib64/libc.so.6 #5 0x00000000004060df in operator delete (p=0x20030190) @ ../lib/m_string.cpp:43 #6 0x0000000000403892 in tstr::~tstr (this=0x2102c980, __in_chrg=<value optimized out>) @ ../lib/m_string.cpp:175 –
could able understand issue. here link have verified https://bugzilla.redhat.com/show_bug.cgi?id=959013
shows size of vdso file not enough. in path /proc/self/maps.
please let me know kind of issue , please suggest fix this.
what kind of issue this
any crash inside malloc or free sure sign of previous heap corruption.
use valgrind or addresssanitizer (incorporated gcc-4.8 well) find root cause.
ignore vdso -- tom tromey said, has nothing problem.
Comments
Post a Comment