|
From: Tom H. <th...@cy...> - 2004-11-16 12:08:49
|
CVS commit by thughes:
Don't try and return the old mask from sigprocmask if the user gave
a null pointer for that argument.
M +2 -1 vg_syscalls.c 1.214
--- valgrind/coregrind/vg_syscalls.c #1.213:1.214
@@ -5945,4 +5945,5 @@ PREx(sys_sigprocmask, SIG_SIM)
&bigger_oldset );
+ if (oldset)
*oldset = bigger_oldset.sig[0];
}
|