Skip to content

Commit

Permalink
Restrict recursion levels in method_missing(); fix #3556
Browse files Browse the repository at this point in the history
Note this is a temporary fix. Error message generation
(including `inspect`) should be deferred until its use.
  • Loading branch information
matz committed Apr 3, 2017
1 parent d27a3d4 commit f5632f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kernel.c
Original file line number Diff line number Diff line change
Expand Up @@ -922,7 +922,7 @@ mrb_method_missing(mrb_state *mrb, mrb_sym name, mrb_value self, mrb_value args)
/* method missing in inspect; avoid recursion */
repr = mrb_any_to_s(mrb, self);
}
else if (mrb_respond_to(mrb, self, inspect) && mrb->c->ci - mrb->c->cibase < 64) {
else if (mrb_respond_to(mrb, self, inspect) && mrb->c->ci - mrb->c->cibase < 16) {
repr = mrb_funcall_argv(mrb, self, inspect, 0, 0);
if (mrb_string_p(repr) && RSTRING_LEN(repr) > 64) {
repr = mrb_any_to_s(mrb, self);
Expand Down

0 comments on commit f5632f2

Please sign in to comment.