From e9e41c02d4309cd50b5584a8dfc0d7e01cb27e10 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Wed, 22 Jul 2020 18:48:30 +0200 Subject: Kill child process when parent dies --- src/std_gc/list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/std_gc') diff --git a/src/std_gc/list.c b/src/std_gc/list.c index 7c56d64..e5272b8 100644 --- a/src/std_gc/list.c +++ b/src/std_gc/list.c @@ -24,7 +24,7 @@ static int tsl_list_ensure_capacity(TslList *self, size_t new_size) { new_capacity = 8; while(new_capacity < new_size) { - new_capacity <<= 1; + new_capacity += (new_capacity >> 1); } new_ptr = GC_REALLOC(self->data, new_capacity); -- cgit v1.2.3