engine: crashhandler: fully initialize struct sigaction
This commit is contained in:
parent
aac0be1ab3
commit
be084d5603
1 changed files with 1 additions and 1 deletions
|
@ -440,7 +440,7 @@ static void Sys_Crash( int signal, siginfo_t *si, void *context)
|
|||
|
||||
void Sys_SetupCrashHandler( void )
|
||||
{
|
||||
struct sigaction act;
|
||||
struct sigaction act = { 0 };
|
||||
act.sa_sigaction = Sys_Crash;
|
||||
act.sa_flags = SA_SIGINFO | SA_ONSTACK;
|
||||
sigaction( SIGSEGV, &act, &oldFilter );
|
||||
|
|
Loading…
Add table
Reference in a new issue