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.23-161-g1d2a824


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  1d2a8245ff7bcc1d8be54f01e26c49297e446aba (commit)
       via  c04af6068b2c2c65c92b3360cbc4b51ad9843f21 (commit)
      from  a7d1c51482d15ab6c07e2ee0ae5e007067b18bfb (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=1d2a8245ff7bcc1d8be54f01e26c49297e446aba

commit 1d2a8245ff7bcc1d8be54f01e26c49297e446aba
Author: Florian Weimer <fweimer@redhat.com>
Date:   Thu Apr 7 13:48:00 2016 +0200

    hsearch_r: Include <limits.h>
    
    It is needed for UINT_MAX.

diff --git a/ChangeLog b/ChangeLog
index 7a785c4..c3b2053 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2016-04-07  Florian Weimer  <fweimer@redhat.com>
 
+	* misc/hsearch_r.c: Include <limits.h>.
+
+2016-04-07  Florian Weimer  <fweimer@redhat.com>
+
 	* malloc/scratch_buffer_set_array_size.c: Include <limits.h>.
 
 2016-04-06   H.J. Lu  <hongjiu.lu@intel.com>
diff --git a/misc/hsearch_r.c b/misc/hsearch_r.c
index 1fca6b3..a24298b 100644
--- a/misc/hsearch_r.c
+++ b/misc/hsearch_r.c
@@ -21,6 +21,7 @@
 #include <string.h>
 #include <stdint.h>
 #include <search.h>
+#include <limits.h>
 
 /* [Aho,Sethi,Ullman] Compilers: Principles, Techniques and Tools, 1986
    [Knuth]            The Art of Computer Programming, part 3 (6.4)  */

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

commit c04af6068b2c2c65c92b3360cbc4b51ad9843f21
Author: Florian Weimer <fweimer@redhat.com>
Date:   Thu Apr 7 13:46:28 2016 +0200

    scratch_buffer_set_array_size: Include <limits.h>
    
    It is needed for CHAR_BIT.

diff --git a/ChangeLog b/ChangeLog
index a10b8c4..7a785c4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2016-04-07  Florian Weimer  <fweimer@redhat.com>
+
+	* malloc/scratch_buffer_set_array_size.c: Include <limits.h>.
+
 2016-04-06   H.J. Lu  <hongjiu.lu@intel.com>
 
 	* sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S
diff --git a/malloc/scratch_buffer_set_array_size.c b/malloc/scratch_buffer_set_array_size.c
index 3d33731..9254c9a 100644
--- a/malloc/scratch_buffer_set_array_size.c
+++ b/malloc/scratch_buffer_set_array_size.c
@@ -18,6 +18,7 @@
 
 #include <scratch_buffer.h>
 #include <errno.h>
+#include <limits.h>
 
 bool
 __libc_scratch_buffer_set_array_size (struct scratch_buffer *buffer,

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

Summary of changes:
 ChangeLog                              |    8 ++++++++
 malloc/scratch_buffer_set_array_size.c |    1 +
 misc/hsearch_r.c                       |    1 +
 3 files changed, 10 insertions(+), 0 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]