diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-12-06 14:52:32 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-12-06 14:52:32 +0000 |
commit | b24d65659f193cd7497dfdae4d8aa1bc91dbf343 (patch) | |
tree | 430b543e3b98a9028f5c0435b1363b2256d26a24 /procps | |
parent | 06656f363de87846086f03c5e12541a66637858e (diff) | |
download | busybox-w32-b24d65659f193cd7497dfdae4d8aa1bc91dbf343.tar.gz busybox-w32-b24d65659f193cd7497dfdae4d8aa1bc91dbf343.tar.bz2 busybox-w32-b24d65659f193cd7497dfdae4d8aa1bc91dbf343.zip |
If find_pid_by_name() had an error, it was returning -1, but storing
that into a pid_t, which is unsigned on a number archs. Furthermore,
find_pid_by_name() would _never_ return an error if the intended proces
was "init", but instead would return 1, meaning we would fail to work
on 2.4.x kernels running an initrd...
-Erik
Diffstat (limited to 'procps')
-rw-r--r-- | procps/kill.c | 2 | ||||
-rw-r--r-- | procps/pidof.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/procps/kill.c b/procps/kill.c index 8b8a9922c..7147b5727 100644 --- a/procps/kill.c +++ b/procps/kill.c | |||
@@ -114,7 +114,7 @@ extern int kill_main(int argc, char **argv) | |||
114 | pid_t myPid=getpid(); | 114 | pid_t myPid=getpid(); |
115 | /* Looks like they want to do a killall. Do that */ | 115 | /* Looks like they want to do a killall. Do that */ |
116 | while (--argc >= 0) { | 116 | while (--argc >= 0) { |
117 | pid_t* pidList; | 117 | long* pidList; |
118 | 118 | ||
119 | pidList = find_pid_by_name( *argv); | 119 | pidList = find_pid_by_name( *argv); |
120 | if (!pidList || *pidList<=0) { | 120 | if (!pidList || *pidList<=0) { |
diff --git a/procps/pidof.c b/procps/pidof.c index 5a40288dc..941582704 100644 --- a/procps/pidof.c +++ b/procps/pidof.c | |||
@@ -58,7 +58,7 @@ extern int pidof_main(int argc, char **argv) | |||
58 | 58 | ||
59 | /* Looks like everything is set to go. */ | 59 | /* Looks like everything is set to go. */ |
60 | while(optind < argc) { | 60 | while(optind < argc) { |
61 | pid_t* pidList; | 61 | long* pidList; |
62 | 62 | ||
63 | pidList = find_pid_by_name( argv[optind]); | 63 | pidList = find_pid_by_name( argv[optind]); |
64 | if (!pidList || *pidList<=0) { | 64 | if (!pidList || *pidList<=0) { |