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