From 0d6b2241f0f460819dcd0d86e00e4d7c331d6bff Mon Sep 17 00:00:00 2001 From: Packit Service Date: Dec 15 2020 07:38:53 +0000 Subject: Apply patch glibc-rh1764218-3.patch patch_name: glibc-rh1764218-3.patch present_in_specfile: true location_in_specfile: 202 --- diff --git a/malloc/malloc.c b/malloc/malloc.c index 9756ed0..90825b2 100644 --- a/malloc/malloc.c +++ b/malloc/malloc.c @@ -1635,7 +1635,7 @@ static INTERNAL_SIZE_T global_max_fast; #define set_max_fast(s) \ global_max_fast = (((s) == 0) \ - ? SMALLBIN_WIDTH : ((s + SIZE_SZ) & ~MALLOC_ALIGN_MASK)) + ? MIN_CHUNK_SIZE / 2 : ((s + SIZE_SZ) & ~MALLOC_ALIGN_MASK)) static inline INTERNAL_SIZE_T get_max_fast (void)