Fix set_max_fast in malloc.

This commit is contained in:
Ulrich Drepper 2010-04-03 09:43:10 -07:00
parent 960af486d2
commit 991eda1ec1
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2010-04-03 Ulrich Drepper <drepper@redhat.com>
* malloc/malloc.c (set_max_fast): Fix computation of the value.
2010-03-30 David S. Miller <davem@davemloft.net>
* sysdeps/unix/sysv/linux/mmap64.c (__mmap64): Fix

View File

@ -2350,7 +2350,8 @@ typedef struct malloc_chunk* mfastbinptr;
*/
#define set_max_fast(s) \
global_max_fast = ((s) == 0)? SMALLBIN_WIDTH: request2size(s)
global_max_fast = (((s) == 0) \
? SMALLBIN_WIDTH: ((s + SIZE_SZ) & ~MALLOC_ALIGN_MASK))
#define get_max_fast() global_max_fast