abort instead of exiting on sigsegv

This commit is contained in:
vaxerski 2023-02-20 11:02:44 +00:00
parent fc49a055c6
commit 784cdd7638
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ int handleCritSignal(int signo, void* data) {
void handleSegv(int sig) {
CrashReporter::createAndSaveCrash();
exit(SIGSEGV);
abort();
}
CCompositor::CCompositor() {