Skip to content

Commit

Permalink
Oops, ignore SIGALRM, not 0
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Feb 26, 2004
1 parent c1436b9 commit 4a10212
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SDL_fatal.c
Expand Up @@ -141,7 +141,7 @@ void SDL_InstallParachute(void)
sigaction(SIGALRM, NULL, &action);
if ( action.sa_handler == SIG_DFL ) {
action.sa_handler = SIG_IGN;
sigaction(SDL_fatal_signals[i], &action, NULL);
sigaction(SIGALRM, &action, NULL);
}
#endif
#else
Expand Down

0 comments on commit 4a10212

Please sign in to comment.