Should not use sizeof(buf) when buf is char*; #3701

This commit is contained in:
Yukihiro "Matz" Matsumoto
2017-06-16 11:42:51 +09:00
parent a7770a39aa
commit 473b2bb20d
+1 -1
View File
@@ -610,7 +610,7 @@ mrb_str_upto(mrb_state *mrb, mrb_value beg)
while (bi <= ei) {
if (excl && bi == ei) break;
snprintf(buf, sizeof(buf), "%.*d", min_width, bi);
snprintf(buf, max_width+1, "%.*d", (int)min_width, bi);
mrb_yield(mrb, block, mrb_str_new(mrb, buf, strlen(buf)));
mrb_gc_arena_restore(mrb, ai);
bi++;