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

Add function error check

Coverity CID 44775
parent 0e4494c5
No related branches found
No related tags found
No related merge requests found
......@@ -281,7 +281,10 @@ read_proc(void)
if (lseek(proc_fd, (off_t) 0, SEEK_SET) != 0)
break;
}
fstat(proc_fd, &buffer);
if (fstat(proc_fd, &buffer) < 0) {
debug("%s: fstat(%s): %m", __func__, proc_name);
n = -1;
}
close(proc_fd);
if (n <= 0)
continue;
......
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