* syscalls.cc (stat_worker): Simplify previous change.

This commit is contained in:
Christopher Faylor 2001-07-14 00:09:33 +00:00
parent 2aa2adb2d2
commit fc901253d1
2 changed files with 7 additions and 6 deletions

View File

@ -1,3 +1,7 @@
Fri 13 Jul 2001 08:08:49 PM EDT Christopher Faylor <cgf@cygnus.com>
* syscalls.cc (stat_worker): Simplify previous change.
Fri Jul 13 13:13:09 2001 Christopher Faylor <cgf@cygnus.com> Fri Jul 13 13:13:09 2001 Christopher Faylor <cgf@cygnus.com>
* syscalls.cc (_unlink): Correct (?) logic which determines when * syscalls.cc (_unlink): Correct (?) logic which determines when

View File

@ -1032,7 +1032,6 @@ stat_worker (const char *caller, const char *name, struct stat *buf,
int attribute = 0; int attribute = 0;
uid_t uid; uid_t uid;
gid_t gid; gid_t gid;
int err;
UINT dtype; UINT dtype;
fhandler_disk_file fh (NULL); fhandler_disk_file fh (NULL);
@ -1050,11 +1049,9 @@ stat_worker (const char *caller, const char *name, struct stat *buf,
goto done; goto done;
} }
if ((err = check_null_invalid_struct_errno (buf))) if (check_null_invalid_struct_errno (buf))
{ goto done;
set_errno (err);
goto done;
}
memset (buf, 0, sizeof (struct stat)); memset (buf, 0, sizeof (struct stat));
if (real_path.is_device ()) if (real_path.is_device ())