From 70194b269e22711c3bbbc18d339b69aab028371e Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 24 Feb 2020 13:12:45 +0900 Subject: 1. Fixed SEGV caused by missing TDE icon loader object. When the applicationi is transformed in a TDE application, the TDE icon loader can be used again. 2. Remove catching of SEGV in code, which was causing 100% CPU load. If something is wrong, better the program terminates and shows an error. Signed-off-by: Michele Calgaro --- src/main.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index 4dd0b6f..d1e0a38 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -48,7 +48,6 @@ int main(int argc, char *argv[]) { // setup signal handlers that undock and quit signal(SIGHUP, sighandler); - signal(SIGSEGV, sighandler); signal(SIGTERM, sighandler); signal(SIGINT, sighandler); signal(SIGUSR1, sighandler); -- cgit v1.2.3