mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 10:45:59 +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) {
|
void handleSegv(int sig) {
|
||||||
CrashReporter::createAndSaveCrash();
|
CrashReporter::createAndSaveCrash();
|
||||||
exit(SIGSEGV);
|
abort();
|
||||||
}
|
}
|
||||||
|
|
||||||
CCompositor::CCompositor() {
|
CCompositor::CCompositor() {
|
||||||
|
|
Loading…
Reference in a new issue