about summary refs log tree commit diff
path: root/malloc/malloc.c
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2018-08-20 14:57:13 +0200
committerFlorian Weimer <fweimer@redhat.com>2018-08-20 14:57:13 +0200
commit35cfefd96062145eeb8aee6bd72d07e0909a6b2e (patch)
tree2ae287f876cd5eb42dffbfff47f19f19c95a2c0d /malloc/malloc.c
parentfa78896b1f9b30479c236acfaa0dcb72ba9018b6 (diff)
downloadglibc-35cfefd96062145eeb8aee6bd72d07e0909a6b2e.tar.gz
glibc-35cfefd96062145eeb8aee6bd72d07e0909a6b2e.tar.xz
glibc-35cfefd96062145eeb8aee6bd72d07e0909a6b2e.zip
malloc: Add ChangeLog for accidentally committed change
Commit b90ddd08f6dd688e651df9ee89ca3a69ff88cd0c ("malloc: Additional
checks for unsorted bin integrity I.") was committed without a
whitespace fix, so it is adjusted here as well.
Diffstat (limited to 'malloc/malloc.c')
-rw-r--r--malloc/malloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/malloc/malloc.c b/malloc/malloc.c
index 47795601c8..67cdfd0ad2 100644
--- a/malloc/malloc.c
+++ b/malloc/malloc.c
@@ -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)");
 
           /*