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.22-676-g12c3bb7


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  12c3bb770dd3ea11215baf23b385dbf297a2a85c (commit)
      from  72276d6e8843db6df5971b06787f0a5e39bda138 (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=12c3bb770dd3ea11215baf23b385dbf297a2a85c

commit 12c3bb770dd3ea11215baf23b385dbf297a2a85c
Author: Torvald Riegel <triegel@redhat.com>
Date:   Fri Jan 15 22:40:50 2016 +0100

    Fix pthread_barrier_init typo.
    
    Applies Paul Eggert's fix for BZ 18868.

diff --git a/ChangeLog b/ChangeLog
index 5d80664..13d8175 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2016-01-15  Torvald Riegel  <triegel@redhat.com>
+
+	[BZ #18868]
+	* nptl/pthread_barrier_init.c (__pthread_barrier_init): Apply fix.
+
 2016-01-16  Andrew Senkevich  <andrew.senkevich@intel.com>
 
 	* sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Added new files.
diff --git a/nptl/pthread_barrier_init.c b/nptl/pthread_barrier_init.c
index 8f89df1..822e17e 100644
--- a/nptl/pthread_barrier_init.c
+++ b/nptl/pthread_barrier_init.c
@@ -42,7 +42,7 @@ __pthread_barrier_init (pthread_barrier_t *barrier,
 
   const struct pthread_barrierattr *iattr
     = (attr != NULL
-       ? iattr = (struct pthread_barrierattr *) attr
+       ? (struct pthread_barrierattr *) attr
        : &default_barrierattr);
 
   ibarrier = (struct pthread_barrier *) barrier;

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

Summary of changes:
 ChangeLog                   |    5 +++++
 nptl/pthread_barrier_init.c |    2 +-
 2 files changed, 6 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]