aboutsummaryrefslogtreecommitdiffstats
path: root/include/ruby/ruby.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ruby/ruby.h')
-rw-r--r--include/ruby/ruby.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/ruby/ruby.h b/include/ruby/ruby.h
index 56e293b010..625636fcdc 100644
--- a/include/ruby/ruby.h
+++ b/include/ruby/ruby.h
@@ -2520,7 +2520,6 @@ rb_scan_args_set(int argc, const VALUE *argv,
int i, argi = 0, vari = 0;
VALUE *var, hash = Qnil, last_hash = 0;
const int n_mand = n_lead + n_trail;
- VALUE tmp_buffer = 0;
if (f_hash && argc > 0 && rb_keyword_given_p()) {
hash = rb_hash_dup(argv[argc - 1]);
@@ -2589,11 +2588,9 @@ rb_scan_args_set(int argc, const VALUE *argv,
if (argi < argc) {
argc_error:
- if (tmp_buffer) rb_free_tmp_buffer(&tmp_buffer);
rb_error_arity(argc, n_mand, f_var ? UNLIMITED_ARGUMENTS : n_mand + n_opt);
}
- if (tmp_buffer) rb_free_tmp_buffer(&tmp_buffer);
return argc;
}
#endif