mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 11:05:58 +01:00
abort instead of exiting on sigsegv
This commit is contained in:
parent
fc49a055c6
commit
784cdd7638
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ int handleCritSignal(int signo, void* data) {
|
|||
|
||||
void handleSegv(int sig) {
|
||||
CrashReporter::createAndSaveCrash();
|
||||
exit(SIGSEGV);
|
||||
abort();
|
||||
}
|
||||
|
||||
CCompositor::CCompositor() {
|
||||
|
|
Loading…
Reference in a new issue