mirror of
https://github.com/w23/xash3d-fwgs
synced 2024-12-15 21:50:59 +01:00
engine: crashhandler: fully initialize struct sigaction
This commit is contained in:
parent
aac0be1ab3
commit
be084d5603
@ -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…
Reference in New Issue
Block a user