diff options
Diffstat (limited to 'procps/kill.c')
-rw-r--r-- | procps/kill.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/procps/kill.c b/procps/kill.c index 9b96b4c1a..18121f06f 100644 --- a/procps/kill.c +++ b/procps/kill.c | |||
@@ -82,7 +82,7 @@ do_it_now: | |||
82 | 82 | ||
83 | if (killall5) { | 83 | if (killall5) { |
84 | pid_t sid; | 84 | pid_t sid; |
85 | procps_status_t* p; | 85 | procps_status_t* p = NULL; |
86 | 86 | ||
87 | // Cannot happen anyway? We don't TERM ourself, we STOP | 87 | // Cannot happen anyway? We don't TERM ourself, we STOP |
88 | // /* kill(-1, sig) on Linux (at least 2.1.x) | 88 | // /* kill(-1, sig) on Linux (at least 2.1.x) |
@@ -94,8 +94,8 @@ do_it_now: | |||
94 | pid = getpid(); | 94 | pid = getpid(); |
95 | sid = getsid(pid); | 95 | sid = getsid(pid); |
96 | /* Now kill all processes except our session */ | 96 | /* Now kill all processes except our session */ |
97 | while ((p = procps_scan(0))!=0) { | 97 | while ((p = procps_scan(p, PSSCAN_PID|PSSCAN_SID))) { |
98 | if (getsid(p->pid)!=sid && p->pid!=pid && p->pid!=1) | 98 | if (p->sid != sid && p->pid != pid && p->pid != 1) |
99 | kill(p->pid, signo); | 99 | kill(p->pid, signo); |
100 | } | 100 | } |
101 | /* And let them continue */ | 101 | /* And let them continue */ |