mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
array.c: use ruby_sized_free and SIZED_REALLOC_N
Part of the plan to reduce dependencies on malloc_usable_size which costs us speed: https://bugs.ruby-lang.org/issues/10238 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63481 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
af71ee55ef
commit
b0200a5e36
1 changed files with 2 additions and 2 deletions
4
array.c
4
array.c
|
@ -230,7 +230,7 @@ ary_resize_capa(VALUE ary, long capacity)
|
|||
MEMCPY((VALUE *)RARRAY(ary)->as.ary, ptr, VALUE, len);
|
||||
FL_SET_EMBED(ary);
|
||||
ARY_SET_LEN(ary, len);
|
||||
ruby_xfree((VALUE *)ptr);
|
||||
ruby_sized_xfree((VALUE *)ptr, RARRAY(ary)->as.heap.aux.capa);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -243,7 +243,7 @@ ary_shrink_capa(VALUE ary)
|
|||
assert(!ARY_SHARED_P(ary));
|
||||
assert(old_capa >= capacity);
|
||||
if (old_capa > capacity)
|
||||
REALLOC_N(RARRAY(ary)->as.heap.ptr, VALUE, capacity);
|
||||
SIZED_REALLOC_N(RARRAY(ary)->as.heap.ptr, VALUE, capacity, old_capa);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue