malloc: Add ChangeLog for accidentally committed change

Commit b90ddd08f6 ("malloc: Additional
checks for unsorted bin integrity I.") was committed without a
whitespace fix, so it is adjusted here as well.

(cherry picked from commit 35cfefd960)
This commit is contained in:
Florian Weimer 2018-08-20 14:57:13 +02:00 committed by Arjun Shankar
parent 5cbb73004b
commit 4d24775292
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2018-08-17 Istvan Kurucsai <pistukem@gmail.com>
* malloc/malloc.c (_int_malloc): Additional binning code checks.
2019-04-23 Adhemerval Zanella <adhemerval.zanella@linaro.org>
[BZ #18035]

View File

@ -3738,7 +3738,7 @@ _int_malloc (mstate av, size_t bytes)
if (__glibc_unlikely (bck->fd != victim)
|| __glibc_unlikely (victim->fd != unsorted_chunks (av)))
malloc_printerr ("malloc(): unsorted double linked list corrupted");
if (__glibc_unlikely (prev_inuse(next)))
if (__glibc_unlikely (prev_inuse (next)))
malloc_printerr ("malloc(): invalid next->prev_inuse (unsorted)");
/*