mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
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.
This commit is contained in:
@ -20,6 +20,10 @@
|
|||||||
|
|
||||||
* sysdeps/s390/fpu/libm-test-ulps: Regenerate.
|
* sysdeps/s390/fpu/libm-test-ulps: Regenerate.
|
||||||
|
|
||||||
|
2018-08-17 Istvan Kurucsai <pistukem@gmail.com>
|
||||||
|
|
||||||
|
* malloc/malloc.c (_int_malloc): Additional binning code checks.
|
||||||
|
|
||||||
2018-08-16 Florian Weimer <fweimer@redhat.com>
|
2018-08-16 Florian Weimer <fweimer@redhat.com>
|
||||||
|
|
||||||
* configure.ac: Add --with-nonshared-cflags option.
|
* configure.ac: Add --with-nonshared-cflags option.
|
||||||
|
@ -3730,7 +3730,7 @@ _int_malloc (mstate av, size_t bytes)
|
|||||||
if (__glibc_unlikely (bck->fd != victim)
|
if (__glibc_unlikely (bck->fd != victim)
|
||||||
|| __glibc_unlikely (victim->fd != unsorted_chunks (av)))
|
|| __glibc_unlikely (victim->fd != unsorted_chunks (av)))
|
||||||
malloc_printerr ("malloc(): unsorted double linked list corrupted");
|
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)");
|
malloc_printerr ("malloc(): invalid next->prev_inuse (unsorted)");
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Reference in New Issue
Block a user