[Bug malloc/14562] threaded programs with x32 abi randomly crash with arena.c:661: heap_trim: Assertion `p->size == (0|0x1)' failed
hjl.tools at gmail dot com
sourceware-bugzilla@sourceware.org
Sat Sep 8 20:44:00 GMT 2012
http://sourceware.org/bugzilla/show_bug.cgi?id=14562
--- Comment #6 from H.J. Lu <hjl.tools at gmail dot com> 2012-09-08 20:43:47 UTC ---
I am testing this patch:
diff --git a/malloc/arena.c b/malloc/arena.c
index f88b41d..ac5afc4 100644
--- a/malloc/arena.c
+++ b/malloc/arena.c
@@ -655,14 +655,22 @@ heap_trim(heap_info *heap, size_t pad)
mchunkptr top_chunk = top(ar_ptr), p, bck, fwd;
heap_info *prev_heap;
long new_size, top_size, extra;
+ unsigned long misalign;
/* Can this heap go away completely? */
while(top_chunk == chunk_at_offset(heap, sizeof(*heap))) {
prev_heap = heap->prev;
p = chunk_at_offset(prev_heap, prev_heap->size - (MINSIZE-2*SIZE_SZ));
+ /* fencepost must be properly aligned. */
+ misalign = ((unsigned long) p) & MALLOC_ALIGN_MASK;
+ if (misalign > 0)
+ {
+ p = (mchunkptr)(((unsigned long) p) & ~MALLOC_ALIGN_MASK);
+ misalign = MALLOC_ALIGNMENT - misalign;
+ }
assert(p->size == (0|PREV_INUSE)); /* must be fencepost */
p = prev_chunk(p);
- new_size = chunksize(p) + (MINSIZE-2*SIZE_SZ);
+ new_size = chunksize(p) + (MINSIZE-2*SIZE_SZ) + misalign;
assert(new_size>0 && new_size<(long)(2*MINSIZE));
if(!prev_inuse(p))
new_size += p->prev_size;
--
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
More information about the Glibc-bugs
mailing list