Proper raised abort() call

This commit is contained in:
Jack Andersen 2017-01-18 23:01:09 -10:00
parent e6f24e6428
commit 847d08d5b7
1 changed files with 2 additions and 1 deletions

View File

@ -188,7 +188,8 @@ void logvisorAbort()
fflush(stderr);
fflush(stdout);
exit(1);
signal(SIGABRT, SIG_DFL);
abort();
}
#endif