]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix assertion in palloc and pvalloc as well.
authorPetr Baudis <pasky@suse.cz>
Wed, 24 Feb 2010 23:44:29 +0000 (15:44 -0800)
committerPetr Baudis <pasky@ucw.cz>
Wed, 12 May 2010 00:02:03 +0000 (02:02 +0200)
(cherry picked from commit 8c0b5f148eccd0a4d9714e72f50f13c586af59ec)

ChangeLog
malloc/malloc.c

index 6f4dfaa8cc4daa0a9c17f51301bbc3554382b473..e66e0c1ffa1263080169ccc43ede3524a1437f2c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2010-02-24  Ulrich Drepper  <drepper@redhat.com>
+
+       [BZ #5553]
+       * malloc/malloc.c (public_vALLOc): Set ar_ptr when trying main_arena.
+       (public_pVALLOc): Likewise.
+
 2010-02-22  Jim Meyering  <meyering@redhat.com>
 
        * manual/math.texi (BSD Random): Fix a typo: s/are/is/
index ea10d17f850fb0bfc19fce25a331e5ce0eaa3d55..f7226769f896c6b852f51f2b4a4cdf5c37e35086 100644 (file)
@@ -1,5 +1,5 @@
 /* Malloc implementation for multiple threads without lock contention.
-   Copyright (C) 1996-2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+   Copyright (C) 1996-2009, 2010 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Wolfram Gloger <wg@malloc.de>
    and Doug Lea <dl@cs.oswego.edu>, 2001.
@@ -3933,9 +3933,10 @@ public_vALLOc(size_t bytes)
   if(!p) {
     /* Maybe the failure is due to running out of mmapped areas. */
     if(ar_ptr != &main_arena) {
-      (void)mutex_lock(&main_arena.mutex);
-      p = _int_memalign(&main_arena, pagesz, bytes);
-      (void)mutex_unlock(&main_arena.mutex);
+      ar_ptr = &main_arena;
+      (void)mutex_lock(&ar_ptr->mutex);
+      p = _int_memalign(&ar_ptr-> pagesz, bytes);
+      (void)mutex_unlock(&ar_ptr->mutex);
     } else {
 #if USE_ARENAS
       /* ... or sbrk() has failed and there is still a chance to mmap() */
@@ -3978,9 +3979,10 @@ public_pVALLOc(size_t bytes)
   if(!p) {
     /* Maybe the failure is due to running out of mmapped areas. */
     if(ar_ptr != &main_arena) {
-      (void)mutex_lock(&main_arena.mutex);
-      p = _int_memalign(&main_arena, pagesz, rounded_bytes);
-      (void)mutex_unlock(&main_arena.mutex);
+      ar_ptr = &main_arena;
+      (void)mutex_lock(&ar_ptr->mutex);
+      p = _int_memalign(&ar_ptr-> pagesz, rounded_bytes);
+      (void)mutex_unlock(&ar_ptr->mutex);
     } else {
 #if USE_ARENAS
       /* ... or sbrk() has failed and there is still a chance to mmap() */