mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-20 21:56:30 +01:00
[Summary] Added abort () call instead of exit () if fatal error occurs to catch a back trace.
This commit is contained in:
parent
71b44e9308
commit
ac2cb8d1d3
1 changed files with 3 additions and 1 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue