summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-string-ext/src/string.c
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2017-06-20 09:16:38 +0900
committerGitHub <[email protected]>2017-06-20 09:16:38 +0900
commit455f3954dcadabc07de58878e6bf81df07d88779 (patch)
treeeca652d2cffe7938a6bbffee56bd7cf84143e8e3 /mrbgems/mruby-string-ext/src/string.c
parent0de7eec628d5751ae4ca99c3f10f6f31bf3d985c (diff)
parentabca63c73b19536faf2025e55ab15d69a1961239 (diff)
downloadmruby-455f3954dcadabc07de58878e6bf81df07d88779.tar.gz
mruby-455f3954dcadabc07de58878e6bf81df07d88779.zip
Merge pull request #3713 from Asmod4n/patch-2
Save gc_arena after buffer got allocated
Diffstat (limited to 'mrbgems/mruby-string-ext/src/string.c')
-rw-r--r--mrbgems/mruby-string-ext/src/string.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mrbgems/mruby-string-ext/src/string.c b/mrbgems/mruby-string-ext/src/string.c
index 6bab87b06..3b288f1db 100644
--- a/mrbgems/mruby-string-ext/src/string.c
+++ b/mrbgems/mruby-string-ext/src/string.c
@@ -601,12 +601,12 @@ mrb_str_upto(mrb_state *mrb, mrb_value beg)
if (ISDIGIT(RSTRING_PTR(beg)[0]) && ISDIGIT(RSTRING_PTR(end)[0]) &&
all_digits_p(RSTRING_PTR(beg), RSTRING_LEN(beg)) &&
all_digits_p(RSTRING_PTR(end), RSTRING_LEN(end))) {
- int ai = mrb_gc_arena_save(mrb);
mrb_int min_width = RSTRING_LEN(beg);
mrb_int max_width = RSTRING_LEN(end);
mrb_int bi = mrb_int(mrb, mrb_str_to_inum(mrb, beg, 10, FALSE));
mrb_int ei = mrb_int(mrb, mrb_str_to_inum(mrb, end, 10, FALSE));
mrb_value str = mrb_str_new(mrb, NULL, max_width);
+ int ai = mrb_gc_arena_save(mrb);
char *buf = RSTRING_PTR(str);
while (bi <= ei) {