diff options
Diffstat (limited to 'src/compilo.c')
-rw-r--r-- | src/compilo.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/compilo.c b/src/compilo.c index d63fb66..b4c44e9 100644 --- a/src/compilo.c +++ b/src/compilo.c @@ -60,7 +60,7 @@ int main(int argc, char **argv) { invite(); -/* signal(SIGSEGV, segfaulthand); */ + signal(SIGSEGV, segfaulthand); if (argc != 3) usage(); @@ -72,6 +72,8 @@ int main(int argc, char **argv) fprintf(stderr, _("\nPerforming shutdown...\n\n")); flush_all(); + + signal(SIGSEGV, NULL); fprintf(stderr, _("Exitting, bye!\n")); return 0; |