From 84dcc38273665cba3f3756a454697edf11ab168a Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 15 Dec 2011 04:15:54 +0000 Subject: * regcomp.c (onig_region_memsize): implemented for memsize_of(). * ext/objspace/objspace.c (memsize_of): use it. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34050 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/objspace/objspace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext') diff --git a/ext/objspace/objspace.c b/ext/objspace/objspace.c index 66e33a38c4..f37499fc27 100644 --- a/ext/objspace/objspace.c +++ b/ext/objspace/objspace.c @@ -97,7 +97,7 @@ memsize_of(VALUE obj) case T_MATCH: if (RMATCH(obj)->rmatch) { struct rmatch *rm = RMATCH(obj)->rmatch; - size += sizeof(struct re_registers); /* TODO: onig_region_memsize(&rm->regs); */ + size += onig_region_memsize(&rm->regs); size += sizeof(struct rmatch_offset) * rm->char_offset_num_allocated; size += sizeof(struct rmatch); } -- cgit v1.2.3