]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
malloc: Add ChangeLog for accidentally committed change
authorFlorian Weimer <fweimer@redhat.com>
Mon, 20 Aug 2018 12:57:13 +0000 (14:57 +0200)
committerArjun Shankar <arjun@redhat.com>
Thu, 2 May 2019 12:27:51 +0000 (14:27 +0200)
Commit b90ddd08f6dd688e651df9ee89ca3a69ff88cd0c ("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 35cfefd96062145eeb8aee6bd72d07e0909a6b2e)

ChangeLog
malloc/malloc.c

index 63917cc15dbd9e01a4bc9585d77ef1e50d79b944..c42b55f72fc10dcb90a31b3271b50e8ee8b4bc9f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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]
index 27cf6137c252a9ab9aef2c6d062d0ba3eae26e99..520a4faa7c1dd61244b848aa4405a17bc85d1f65 100644 (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)");
 
           /*