d8307d
The below commit contains only a whitespace change and was backported in
d8307d
order to avoid future conflicts.
d8307d
d8307d
commit 35cfefd96062145eeb8aee6bd72d07e0909a6b2e
d8307d
Author: Florian Weimer <fweimer@redhat.com>
d8307d
Date:   Mon Aug 20 14:57:13 2018 +0200
d8307d
d8307d
    malloc: Add ChangeLog for accidentally committed change
d8307d
    
d8307d
    Commit b90ddd08f6dd688e651df9ee89ca3a69ff88cd0c ("malloc: Additional
d8307d
    checks for unsorted bin integrity I.") was committed without a
d8307d
    whitespace fix, so it is adjusted here as well.
d8307d
d8307d
diff --git a/malloc/malloc.c b/malloc/malloc.c
d8307d
index c07463001a65af90..eb6a8ff33c0c313b 100644
d8307d
--- a/malloc/malloc.c
d8307d
+++ b/malloc/malloc.c
d8307d
@@ -3745,7 +3745,7 @@ _int_malloc (mstate av, size_t bytes)
d8307d
           if (__glibc_unlikely (bck->fd != victim)
d8307d
               || __glibc_unlikely (victim->fd != unsorted_chunks (av)))
d8307d
             malloc_printerr ("malloc(): unsorted double linked list corrupted");
d8307d
-          if (__glibc_unlikely (prev_inuse(next)))
d8307d
+          if (__glibc_unlikely (prev_inuse (next)))
d8307d
             malloc_printerr ("malloc(): invalid next->prev_inuse (unsorted)");
d8307d
 
d8307d
           /*