summaryrefslogtreecommitdiffstats
path: root/variable.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-03-17 08:58:21 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-03-17 08:58:21 +0000
commitb54db8568cae6f5be8b98977a82d11df2d5c8c73 (patch)
treeb7027454a641e7c51404b316cb9b0b28f66acd3d /variable.c
parent8f043b64fb245bb4ce6748850f77e1ff48d97fa5 (diff)
downloadruby-b54db8568cae6f5be8b98977a82d11df2d5c8c73.tar.gz
ruby-b54db8568cae6f5be8b98977a82d11df2d5c8c73.tar.xz
ruby-b54db8568cae6f5be8b98977a82d11df2d5c8c73.zip
2000-03-17
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@646 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'variable.c')
-rw-r--r--variable.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/variable.c b/variable.c
index c8bcfb039..691a0159e 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);
}