summaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2020-02-24 13:12:45 +0900
committerMichele Calgaro <[email protected]>2020-02-24 13:12:45 +0900
commit70194b269e22711c3bbbc18d339b69aab028371e (patch)
tree9a2041fa538a32a53261ae692b03551202834007 /src/main.cpp
parent2135f14eef3d1058e0a0006a9db52a30d4511863 (diff)
downloadtdedocker-70194b269e22711c3bbbc18d339b69aab028371e.tar.gz
tdedocker-70194b269e22711c3bbbc18d339b69aab028371e.zip
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 <[email protected]>
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp1
1 files changed, 0 insertions, 1 deletions
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);