Skip to content

Commit

Permalink
Prevent sandbox_boxedclass_method_missing() from calling private methods
Browse files Browse the repository at this point in the history
  • Loading branch information
lwu committed Jan 21, 2007
1 parent f6bb598 commit 1ec4f53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/sand_table/sand_table.c
Expand Up @@ -416,7 +416,7 @@ static VALUE
sandbox_run_method_call(wick)
sandwick *wick;
{
return rb_funcall2(wick->link, SYM2ID(wick->argv[0]), wick->argc - 1, &wick->argv[1]);
return rb_funcall3(wick->link, SYM2ID(wick->argv[0]), wick->argc - 1, &wick->argv[1]);
}

/*
Expand Down

0 comments on commit 1ec4f53

Please sign in to comment.