Closed yhara closed 10 months ago
This PR fixes a SEGV occurs by "foo".chars.reverse", for example.
"foo".chars.reverse"
chars is implemented in Rust and calls SkAry::new. I forgot to give appropreate arg for meta_array_new and broken object was created.
chars
SkAry::new
meta_array_new
This PR fixes a SEGV occurs by
"foo".chars.reverse"
, for example.chars
is implemented in Rust and callsSkAry::new
. I forgot to give appropreate arg formeta_array_new
and broken object was created.