From 10a53d3ef4514b6b50cf716a80981bfa9008f3e1 Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 10 Jun 2003 05:22:17 +0000 Subject: * 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 --- ChangeLog | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 72656f12f..4049ff89f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +Tue Jun 10 01:07:54 2003 Yukihiro Matsumoto + + * 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. + Mon Jun 9 19:02:33 2003 Nobuyoshi Nakada * configure.in: checks presence of grp.h and setgroups(). @@ -13,6 +21,10 @@ Sun Jun 8 13:37:21 2003 Takaaki Uematsu Sat Jun 7 22:22:03 2003 Yukihiro Matsumoto + * ext/syck/rubyext.c (syck_loader_transfer): should not use + rb_cProc directly, since type_proc may be Proc, Block, or + Method. + * parse.y (value_expr0): class and module statements should not be warned for "void value expression". [ruby-talk:72989] -- cgit