From 4c5d3b42576af1fc1fc51ff605757146e630074e Mon Sep 17 00:00:00 2001 From: Yuichi Nishiwaki Date: Fri, 29 Nov 2013 12:02:29 +0900 Subject: [PATCH] Revert "[bugfix] do not fuse end-of-page block into other blocks" This reverts commit 5656590fa06023de76ef366451376156ee5bdec3. --- src/gc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gc.c b/src/gc.c index 853413ce..d0fbf1e3 100644 --- a/src/gc.c +++ b/src/gc.c @@ -455,7 +455,7 @@ gc_free(pic_state *pic, union header *p) break; } } - if (p + p->s.size == bp->s.ptr && bp->s.ptr->s.size > 0) { + if (p + p->s.size == bp->s.ptr) { p->s.size += bp->s.ptr->s.size; p->s.ptr = bp->s.ptr->s.ptr; }