[IA64] sys32_signal() forgets to initialize ->sa_mask

Pointed out by Oleg Nesterov <oleg@tv-sign.ru>, who in turn
got the hint from Linus.

Signed-off-by: Tony Luck <tony.luck@intel.com>

Tony Luck 1ff0be15 b6bb7618

+1
+1
arch/ia64/ia32/ia32_signal.c
··· 515 516 sigact_set_handler(&new_sa, handler, 0); 517 new_sa.sa.sa_flags = SA_ONESHOT | SA_NOMASK; 518 519 ret = do_sigaction(sig, &new_sa, &old_sa); 520
··· 515 516 sigact_set_handler(&new_sa, handler, 0); 517 new_sa.sa.sa_flags = SA_ONESHOT | SA_NOMASK; 518 + sigemptyset(&new_sa.sa.sa_mask); 519 520 ret = do_sigaction(sig, &new_sa, &old_sa); 521