[Summary] Added abort () call instead of exit () if fatal error occurs to catch a back trace.

This commit is contained in:
Greg Zharun 2015-01-27 12:04:11 +02:00
parent 71b44e9308
commit ac2cb8d1d3

View file

@ -664,7 +664,9 @@ UI::handle_fatal (const char *message)
theMain->run (); theMain->run ();
_exit (1); //GZ: Temporary change to catch a bug
//_exit (1);
abort ();
} }
void void