public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc/ibm/2.28/master] malloc: Add ChangeLog for accidentally committed change
@ 2019-06-27 14:31 Tulio Magno Quites Machado Filho
  0 siblings, 0 replies; only message in thread
From: Tulio Magno Quites Machado Filho @ 2019-06-27 14:31 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=4d2477529236dadebfdd4f70b39226415ae9aac0

commit 4d2477529236dadebfdd4f70b39226415ae9aac0
Author: Florian Weimer <fweimer@redhat.com>
Date:   Mon Aug 20 14:57:13 2018 +0200

    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.
    
    (cherry picked from commit 35cfefd96062145eeb8aee6bd72d07e0909a6b2e)

Diff:
---
 ChangeLog       | 4 ++++
 malloc/malloc.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index 63917cc..c42b55f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2018-08-17  Istvan Kurucsai  <pistukem@gmail.com>
+
+	* malloc/malloc.c (_int_malloc): Additional binning code checks.
+
 2019-04-23  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
 
 	[BZ #18035]
diff --git a/malloc/malloc.c b/malloc/malloc.c
index 27cf613..520a4fa 100644
--- a/malloc/malloc.c
+++ b/malloc/malloc.c
@@ -3738,7 +3738,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)");
 
           /*


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2019-06-27 14:31 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-27 14:31 [glibc/ibm/2.28/master] malloc: Add ChangeLog for accidentally committed change Tulio Magno Quites Machado Filho

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).