summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-proc-ext
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2020-10-23 15:43:18 +0900
committerGitHub <[email protected]>2020-10-23 15:43:18 +0900
commit17247c51f2e713b89d84ea329bae83b71f14a431 (patch)
treee69229c79156bb32e1cfa084b1a063e38c65116d /mrbgems/mruby-proc-ext
parentfd38b9217dbb1b4357d8973848babd7ba3f25696 (diff)
parentf0a64329b1cb8156e0d525d003e5d6ff03b7832f (diff)
downloadmruby-17247c51f2e713b89d84ea329bae83b71f14a431.tar.gz
mruby-17247c51f2e713b89d84ea329bae83b71f14a431.zip
Merge pull request #5099 from dearblue/getargs-array
Prohibit array changes by "a"/"*" specifier of `mrb_get_args()`
Diffstat (limited to 'mrbgems/mruby-proc-ext')
-rw-r--r--mrbgems/mruby-proc-ext/test/proc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mrbgems/mruby-proc-ext/test/proc.c b/mrbgems/mruby-proc-ext/test/proc.c
index 7072fe2e9..0253f2b60 100644
--- a/mrbgems/mruby-proc-ext/test/proc.c
+++ b/mrbgems/mruby-proc-ext/test/proc.c
@@ -35,7 +35,7 @@ static mrb_value
cfunc_env_get(mrb_state *mrb, mrb_value self)
{
mrb_sym n;
- mrb_value *argv; mrb_int argc;
+ const mrb_value *argv; mrb_int argc;
mrb_method_t m;
struct RProc *p;
mrb_get_args(mrb, "na", &n, &argv, &argc);