summaryrefslogtreecommitdiff
path: root/gc.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-05-11 14:28:37 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-05-11 14:28:37 +0000
commit8acaa122f5e5025ed45c8726c6a178201ae22496 (patch)
tree5a56c6411e2c185a54f5f6b7b1cfdb5a0c4fbb3a /gc.c
parentcea73b2df9e8f8516e53a896944c05795fc35e4d (diff)
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
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c2
1 files changed, 1 insertions, 1 deletions
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 *