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.28.9000-282-g278fdab


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  278fdabd8c45dc215222facd36febfc3f6f2a95d (commit)
      from  58bb655acb3afc7ed13354eda307019604f77137 (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=278fdabd8c45dc215222facd36febfc3f6f2a95d

commit 278fdabd8c45dc215222facd36febfc3f6f2a95d
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Sun Nov 11 20:08:29 2018 +0100

    hurd: Fix spawni's user_link reallocation
    
    * hurd/hurd/userlink.h (_hurd_userlink_move): Make new_link's
    predecessor point to new_link instead of link.

diff --git a/hurd/hurd/userlink.h b/hurd/hurd/userlink.h
index 484706a..b23567e 100644
--- a/hurd/hurd/userlink.h
+++ b/hurd/hurd/userlink.h
@@ -158,11 +158,11 @@ _hurd_userlink_move (struct hurd_userlink *new_link,
 
   if (new_link->resource.next != NULL)
     new_link->resource.next->resource.prevp = &new_link->resource.next;
-  *new_link->resource.prevp = link;
+  *new_link->resource.prevp = new_link;
 
   if (new_link->thread.next != NULL)
     new_link->thread.next->thread.prevp = &new_link->thread.next;
-  *new_link->thread.prevp = link;
+  *new_link->thread.prevp = new_link;
 }
 # endif
 #endif

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

Summary of changes:
 hurd/hurd/userlink.h |    4 ++--
 1 files changed, 2 insertions(+), 2 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]