From 5c13dd59db1ee6c04cdac4ce2ee97d5934115439 Mon Sep 17 00:00:00 2001 From: matz Date: Fri, 17 Mar 2000 08:58:21 +0000 Subject: 2000-03-17 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@646 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- variable.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'variable.c') diff --git a/variable.c b/variable.c index c8bcfb0393..691a0159e3 100644 --- a/variable.c +++ b/variable.c @@ -226,6 +226,7 @@ rb_autoload_id(id, filename) ID id; const char *filename; { + rb_secure(4); if (!rb_is_const_id(id)) { rb_raise(rb_eNameError, "autoload must be constant name", rb_id2name(id)); @@ -1036,6 +1037,7 @@ rb_autoload_load(id) st_delete(autoload_tbl, &id, &modname); module = rb_str_new2(modname); + FL_UNSET(module, FL_TAINT); free(modname); rb_f_require(Qnil, module); } -- cgit v1.2.3