mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 04:50:07 +00:00
Fix set_max_fast in malloc.
This commit is contained in:
parent
960af486d2
commit
991eda1ec1
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user