engine: crashhandler: fully initialize struct sigaction

This commit is contained in:
Alibek Omarov 2023-01-31 00:50:48 +03:00
parent aac0be1ab3
commit be084d5603

View File

@ -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 );