diff options
-rw-r--r-- | kill.c | 4 | ||||
-rw-r--r-- | libbb/find_pid_by_name.c | 2 | ||||
-rw-r--r-- | procps/kill.c | 4 |
3 files changed, 6 insertions, 4 deletions
@@ -218,9 +218,9 @@ extern int kill_main(int argc, char **argv) | |||
218 | pid_t* pidList; | 218 | pid_t* pidList; |
219 | 219 | ||
220 | pidList = find_pid_by_name( *argv); | 220 | pidList = find_pid_by_name( *argv); |
221 | if (!pidList) { | 221 | if (!pidList || *pidList<=0) { |
222 | all_found = FALSE; | 222 | all_found = FALSE; |
223 | error_msg( "%s: no process killed", *argv); | 223 | error_msg_and_die( "%s: no process killed", *argv); |
224 | } | 224 | } |
225 | 225 | ||
226 | for(; pidList && *pidList!=0; pidList++) { | 226 | for(; pidList && *pidList!=0; pidList++) { |
diff --git a/libbb/find_pid_by_name.c b/libbb/find_pid_by_name.c index 57decc69c..7f39dd41c 100644 --- a/libbb/find_pid_by_name.c +++ b/libbb/find_pid_by_name.c | |||
@@ -106,6 +106,7 @@ extern pid_t* find_pid_by_name( char* pidName) | |||
106 | pidList=xrealloc( pidList, sizeof(pid_t)); | 106 | pidList=xrealloc( pidList, sizeof(pid_t)); |
107 | pidList[0]=1; | 107 | pidList[0]=1; |
108 | } else { | 108 | } else { |
109 | pidList=xrealloc( pidList, sizeof(pid_t)); | ||
109 | pidList[0]=-1; | 110 | pidList[0]=-1; |
110 | } | 111 | } |
111 | 112 | ||
@@ -181,6 +182,7 @@ extern pid_t* find_pid_by_name( char* pidName) | |||
181 | pidList=xrealloc( pidList, sizeof(pid_t)); | 182 | pidList=xrealloc( pidList, sizeof(pid_t)); |
182 | pidList[0]=1; | 183 | pidList[0]=1; |
183 | } else { | 184 | } else { |
185 | pidList=xrealloc( pidList, sizeof(pid_t)); | ||
184 | pidList[0]=-1; | 186 | pidList[0]=-1; |
185 | } | 187 | } |
186 | return pidList; | 188 | return pidList; |
diff --git a/procps/kill.c b/procps/kill.c index fb3d72213..8745f63c1 100644 --- a/procps/kill.c +++ b/procps/kill.c | |||
@@ -218,9 +218,9 @@ extern int kill_main(int argc, char **argv) | |||
218 | pid_t* pidList; | 218 | pid_t* pidList; |
219 | 219 | ||
220 | pidList = find_pid_by_name( *argv); | 220 | pidList = find_pid_by_name( *argv); |
221 | if (!pidList) { | 221 | if (!pidList || *pidList<=0) { |
222 | all_found = FALSE; | 222 | all_found = FALSE; |
223 | error_msg( "%s: no process killed", *argv); | 223 | error_msg_and_die( "%s: no process killed", *argv); |
224 | } | 224 | } |
225 | 225 | ||
226 | for(; pidList && *pidList!=0; pidList++) { | 226 | for(; pidList && *pidList!=0; pidList++) { |