1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-14 10:09:48 +00:00

Fix typo, should zero the kinfo_proc's siglist, not the real one's - the real

one doesn't have one.

Submitted by:	jake, scottl
Big pointed hat that lands one in the badcommitters box to:	jmallett
This commit is contained in:
Juli Mallett 2002-10-01 00:28:14 +00:00
parent c7f73b67b5
commit 1340544372
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=104248

View File

@ -198,7 +198,7 @@ kvm_proclist(kd, what, arg, p, bp, maxcnt)
* not exposed to userland. For compatability, just install
* an empty signal set.
*/
SIGEMPTYSET(proc.p_siglist);
SIGEMPTYSET(kp->ki_siglist);
if (proc.p_procsig != NULL) {
if (KREAD(kd, (u_long)proc.p_procsig, &procsig)) {
_kvm_err(kd, kd->program,