diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-06-10 05:22:17 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-06-10 05:22:17 +0000 |
commit | 10a53d3ef4514b6b50cf716a80981bfa9008f3e1 (patch) | |
tree | 28f8c503efdbf7bfc9a70f33aec63933bbb7c1ac /process.c | |
parent | 9f2937998baf5b90febc01ac7192408a36376d75 (diff) | |
download | ruby-10a53d3ef4514b6b50cf716a80981bfa9008f3e1.tar.gz ruby-10a53d3ef4514b6b50cf716a80981bfa9008f3e1.tar.xz ruby-10a53d3ef4514b6b50cf716a80981bfa9008f3e1.zip |
* lib/irb.rb (IRB::Irb::eval_input): warn and exit if $SAFE >=3
after input evaluation.
* lib/irb.rb (IRB::Irb::eval_input): untaint input string. now
irb works for levels 1 and 2.
* ext/syck/rubyext.c (syck_loader_transfer): should not use
rb_cProc directly, since type_proc may be Proc, Block, or
Method.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3931 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'process.c')
-rw-r--r-- | process.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1283,6 +1283,9 @@ proc_setgroups(VALUE obj, VALUE ary) } else { gr = getgrnam(RSTRING(g)->ptr); + if (gr == NULL) + rb_raise(rb_eArgError, "can't find group for %s", RSTRING(g)->ptr); + groups[i] = gr->gr_gid; } } } |