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.20-380-gaf102d9


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  af102d9529faee5810fde80dac6337b6148789ad (commit)
      from  ea41469b7ab2c8e35b1c10054f7076a95f80003a (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=af102d9529faee5810fde80dac6337b6148789ad

commit af102d9529faee5810fde80dac6337b6148789ad
Author: Roland McGrath <roland@hack.frob.com>
Date:   Wed Dec 17 10:41:28 2014 -0800

    Remove explicit inline on malloc perturb functions.

diff --git a/ChangeLog b/ChangeLog
index 7bfd1c9..634166d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-12-17  Roland McGrath  <roland@hack.frob.com>
+
+	* malloc/malloc.c (alloc_perturb, free_perturb): Remove inline keyword.
+
 2014-12-17  Joseph Myers  <joseph@codesourcery.com>
 
 	[BZ #17725]
diff --git a/malloc/malloc.c b/malloc/malloc.c
index cb91b97..875fe2e 100644
--- a/malloc/malloc.c
+++ b/malloc/malloc.c
@@ -1854,14 +1854,14 @@ static int check_action = DEFAULT_CHECK_ACTION;
 
 static int perturb_byte;
 
-static inline void
+static void
 alloc_perturb (char *p, size_t n)
 {
   if (__glibc_unlikely (perturb_byte))
     memset (p, perturb_byte ^ 0xff, n);
 }
 
-static inline void
+static void
 free_perturb (char *p, size_t n)
 {
   if (__glibc_unlikely (perturb_byte))

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

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