Skip to content
Snippets Groups Projects
Commit 93adc329 authored by Morris Jette's avatar Morris Jette
Browse files

Fix bad logix in proctrack/linuxproc reported by Coverity

This isn't a new bug, but logic in this area changed and Coverity
  reported it as a new problem (duplicate logic). The logic also
  incorrectly used a strstr() rather than strcmp() to find maching
  process names.
parent 4e6382eb
No related branches found
No related tags found
No related merge requests found
......@@ -329,7 +329,7 @@ extern pid_t find_ancestor(pid_t process, char *process_name)
rbuf = xmalloc_nz(4097);
pid = ppid = (long)process;
do {
while (1) {
if (ppid <= 1) {
pid = 0;
break;
......@@ -370,7 +370,9 @@ extern pid_t find_ancestor(pid_t process, char *process_name)
continue;
}
close(fd);
} while (!strstr(rbuf, process_name));
if (strcmp(rbuf, process_name) == 0)
break;
}
xfree(rbuf);
return pid;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment