Commit 58fef0ac authored by Wayne Davison's avatar Wayne Davison

Changed direct call to fstat() into a call to do_fstat().

parent 25e11814
......@@ -37,12 +37,11 @@ void close_all(void)
int max_fd;
int fd;
int ret;
struct stat st;
STRUCT_STAT st;
max_fd = sysconf(_SC_OPEN_MAX) - 1;
for (fd = max_fd; fd >= 0; fd--) {
ret = fstat(fd,&st);
if (fstat(fd,&st) == 0) {
if ((ret = do_fstat(fd, &st)) == 0) {
if (is_a_socket(fd))
ret = shutdown(fd, 2);
ret = close(fd);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment