From:
<br...@ph...> - 2006-05-05 07:52:22
|
Jochen Puchalla wrote: > and everytime I hit the "del" key in gnuplot, it segfaults. > I have no idea why this happens, but it is very annoying. > I straced it: Sorry, but an strace is not very helpful here. What we need is a backtrace: run a debuggable binary of gnuplot from inside gdb, provoke the crash, then type "bt" after the crash brings you back to the gdb prompt. This will tell you which function the segfault happened in. "info locals" will display all variables reachable from the crash point. |