From 8acaa122f5e5025ed45c8726c6a178201ae22496 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 11 May 2017 14:28:37 +0000 Subject: [PATCH] gc.c: use the argument objspace * gc.c (objspace_xrealloc): use the argument objspace, instead of the default object space. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58664 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- gc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gc.c b/gc.c index 8371772d02..ca66364889 100644 --- a/gc.c +++ b/gc.c @@ -7872,7 +7872,7 @@ xmalloc2_size(const size_t count, const size_t elsize) static void * objspace_xmalloc2(rb_objspace_t *objspace, size_t n, size_t size) { - return objspace_xmalloc0(&rb_objspace, xmalloc2_size(n, size)); + return objspace_xmalloc0(objspace, xmalloc2_size(n, size)); } static void *