find_pid_by_name() interface
-Erik
pid_t* pidList;
pidList = find_pid_by_name( *argv);
- if (!pidList) {
+ if (!pidList || *pidList<=0) {
all_found = FALSE;
- error_msg( "%s: no process killed", *argv);
+ error_msg_and_die( "%s: no process killed", *argv);
}
for(; pidList && *pidList!=0; pidList++) {
pidList=xrealloc( pidList, sizeof(pid_t));
pidList[0]=1;
} else {
+ pidList=xrealloc( pidList, sizeof(pid_t));
pidList[0]=-1;
}
pidList=xrealloc( pidList, sizeof(pid_t));
pidList[0]=1;
} else {
+ pidList=xrealloc( pidList, sizeof(pid_t));
pidList[0]=-1;
}
return pidList;
pid_t* pidList;
pidList = find_pid_by_name( *argv);
- if (!pidList) {
+ if (!pidList || *pidList<=0) {
all_found = FALSE;
- error_msg( "%s: no process killed", *argv);
+ error_msg_and_die( "%s: no process killed", *argv);
}
for(; pidList && *pidList!=0; pidList++) {