aboutsummaryrefslogtreecommitdiffstats
path: root/gc.c
diff options
context:
space:
mode:
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/gc.c b/gc.c
index 835ef5d3b2..56215bb6ea 100644
--- a/gc.c
+++ b/gc.c
@@ -922,6 +922,10 @@ init_heap(rb_objspace_t *objspace)
add = HEAP_MIN_SLOTS / HEAP_OBJ_LIMIT;
+ if (!add) {
+ add = 1;
+ }
+
if ((heaps_used + add) > heaps_length) {
allocate_heaps(objspace, heaps_used + add);
}
@@ -938,6 +942,11 @@ static void
set_heaps_increment(rb_objspace_t *objspace)
{
size_t next_heaps_length = (size_t)(heaps_used * 1.8);
+
+ if (next_heaps_length == heaps_used) {
+ next_heaps_length++;
+ }
+
heaps_inc = next_heaps_length - heaps_used;
if (next_heaps_length > heaps_length) {