This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.27.9000-224-ge54554c


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  e54554ca6231febd312f01d8be556c7443d4a955 (commit)
      from  72e7ffc37fd59e093eb6352c9e0abde2112a9346 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=e54554ca6231febd312f01d8be556c7443d4a955

commit e54554ca6231febd312f01d8be556c7443d4a955
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Sun Mar 18 20:49:26 2018 +0100

    hurd: fix build
    
    * sysdeps/mach/hurd/i386/init-first.c: Compare d->phdr with 0 instead of
    NULL.

diff --git a/sysdeps/mach/hurd/i386/init-first.c b/sysdeps/mach/hurd/i386/init-first.c
index 226de02..e272e32 100644
--- a/sysdeps/mach/hurd/i386/init-first.c
+++ b/sysdeps/mach/hurd/i386/init-first.c
@@ -107,7 +107,7 @@ init1 (int argc, char *arg0, ...)
   /* If we are the bootstrap task started by the kernel,
      then after the environment pointers there is no Hurd
      data block; the argument strings start there.  */
-  if ((void *) d == argv[0] || d->phdr == NULL)
+  if ((void *) d == argv[0] || d->phdr == 0)
     {
 #ifndef SHARED
       /* With a new enough linker (binutils-2.23 or better),

-----------------------------------------------------------------------

Summary of changes:
 sysdeps/mach/hurd/i386/init-first.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]