Mail Archives: djgpp/1997/03/02/06:38:53
On 1 Mar 1997, Paul Derbyshire wrote:
> If you get a crash with a traceback of just 0x00000000 with nothing symify
> can use, chances are you accidentally used a NULL pointer somewhere a
> pointer to a function was expected. I.e.
>
> int main (int argc, char *argv[]) {
> void (*func)(void);
> func=NULL;
> func();
> }
>
> will generate such a crash.
Another, more common case is that your program crashed inside a signal
handler, or used some other method of a non-local goto.
- Raw text -