]> 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)
committerFlorian Weimer <fweimer@redhat.com>
Mon, 20 Aug 2018 12:57:13 +0000 (14:57 +0200)
Commit b90ddd08f6dd688e651df9ee89ca3a69ff88cd0c ("malloc: Additional
checks for unsorted bin integrity I.") was committed without a
whitespace fix, so it is adjusted here as well.

ChangeLog
malloc/malloc.c

index deb099483fc26c76771a0d155b0ed2980d95ae7a..56ab51d1b860c8f1cfd9cf58ae53e9b333a6a997 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
 
        * 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>
 
        * configure.ac: Add --with-nonshared-cflags option.
index 47795601c87513912a73b14576e30bff2f50de55..67cdfd0ad2f003964cd0f7dfe3bcd85ca98528a7 100644 (file)
@@ -3730,7 +3730,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)");
 
           /*