mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-18 14:40:06 +00:00
Update.
* misc/daemon.c (daemon): Don't succeed if /dev/null cannot be opened.
This commit is contained in:
parent
9435d38cb1
commit
5149942304
@ -1,5 +1,8 @@
|
|||||||
2004-09-24 Ulrich Drepper <drepper@redhat.com>
|
2004-09-24 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* misc/daemon.c (daemon): Don't succeed if /dev/null cannot be
|
||||||
|
opened.
|
||||||
|
|
||||||
* nis/ypclnt.c (do_ypcall): Add one missing unlock. Simplify the
|
* nis/ypclnt.c (do_ypcall): Add one missing unlock. Simplify the
|
||||||
code a bit.
|
code a bit.
|
||||||
|
|
||||||
|
@ -61,12 +61,12 @@ daemon(nochdir, noclose)
|
|||||||
if (!nochdir)
|
if (!nochdir)
|
||||||
(void)__chdir("/");
|
(void)__chdir("/");
|
||||||
|
|
||||||
if (!noclose
|
if (!noclose) {
|
||||||
&& (fd = open_not_cancel(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
|
|
||||||
struct stat64 st;
|
struct stat64 st;
|
||||||
|
|
||||||
if (__builtin_expect (__fxstat64 (_STAT_VER, fd, &st), 0) == 0)
|
if ((fd = open_not_cancel(_PATH_DEVNULL, O_RDWR, 0)) != -1
|
||||||
{
|
&& (__builtin_expect (__fxstat64 (_STAT_VER, fd, &st), 0)
|
||||||
|
== 0)) {
|
||||||
if (__builtin_expect (S_ISCHR (st.st_mode), 1) != 0
|
if (__builtin_expect (S_ISCHR (st.st_mode), 1) != 0
|
||||||
#if defined DEV_NULL_MAJOR && defined DEV_NULL_MINOR
|
#if defined DEV_NULL_MAJOR && defined DEV_NULL_MINOR
|
||||||
&& (st.st_rdev
|
&& (st.st_rdev
|
||||||
|
Loading…
Reference in New Issue
Block a user