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