Remove explicit inline on malloc perturb functions.

This commit is contained in:
Roland McGrath 2014-12-17 10:41:28 -08:00
parent ea41469b7a
commit af102d9529
2 changed files with 6 additions and 2 deletions

View File

@ -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]

View 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))