]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Remove explicit inline on malloc perturb functions.
authorRoland McGrath <roland@hack.frob.com>
Wed, 17 Dec 2014 18:41:28 +0000 (10:41 -0800)
committerRoland McGrath <roland@hack.frob.com>
Wed, 17 Dec 2014 18:41:28 +0000 (10:41 -0800)
ChangeLog
malloc/malloc.c

index 7bfd1c9eb0b5dd310577081f4b1cb3ccdc814868..634166dbbae1beb175b3561b9717afd7546b0955 100644 (file)
--- 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]
index cb91b97da46bc1e1f8afdfb718568ef193c2814a..875fe2ed443ae60c3e219a401e7f692c359d32cf 100644 (file)
@@ -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))