Skip to content
This repository was archived by the owner on Feb 5, 2022. It is now read-only.

Commit 35cfefd

Browse files
committed
malloc: Add ChangeLog for accidentally committed change
Commit b90ddd0 ("malloc: Additional checks for unsorted bin integrity I.") was committed without a whitespace fix, so it is adjusted here as well.
1 parent fa78896 commit 35cfefd

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

ChangeLog

+4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020

2121
* sysdeps/s390/fpu/libm-test-ulps: Regenerate.
2222

23+
2018-08-17 Istvan Kurucsai <[email protected]>
24+
25+
* malloc/malloc.c (_int_malloc): Additional binning code checks.
26+
2327
2018-08-16 Florian Weimer <[email protected]>
2428

2529
* configure.ac: Add --with-nonshared-cflags option.

malloc/malloc.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -3730,7 +3730,7 @@ _int_malloc (mstate av, size_t bytes)
37303730
if (__glibc_unlikely (bck->fd != victim)
37313731
|| __glibc_unlikely (victim->fd != unsorted_chunks (av)))
37323732
malloc_printerr ("malloc(): unsorted double linked list corrupted");
3733-
if (__glibc_unlikely (prev_inuse(next)))
3733+
if (__glibc_unlikely (prev_inuse (next)))
37343734
malloc_printerr ("malloc(): invalid next->prev_inuse (unsorted)");
37353735

37363736
/*

0 commit comments

Comments
 (0)