ruby-changes:6214
From: matz <ko1@a...>
Date: Mon, 30 Jun 2008 10:30:56 +0900 (JST)
Subject: [ruby-changes:6214] Ruby:r17726 (trunk): * ext/syslog/syslog.c (syslog_write): syslog operations should be
matz 2008-06-30 10:30:32 +0900 (Mon, 30 Jun 2008) New Revision: 17726 Modified files: trunk/ChangeLog trunk/ext/syslog/syslog.c Log: * ext/syslog/syslog.c (syslog_write): syslog operations should be protected from $SAFE level 4. a patch from Keita Yamaguchi <keita.yamaguchi at gmail.com>. * ext/syslog/syslog.c (mSyslog_close): ditto. * ext/syslog/syslog.c (mSyslog_set_mask): ditto. http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?r1=17726&r2=17725&diff_format=u http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ext/syslog/syslog.c?r1=17726&r2=17725&diff_format=u Index: ChangeLog =================================================================== --- ChangeLog (revision 17725) +++ ChangeLog (revision 17726) @@ -1,3 +1,13 @@ +Mon Jun 30 10:28:33 2008 Yukihiro Matsumoto <matz@r...> + + * ext/syslog/syslog.c (syslog_write): syslog operations should be + protected from $SAFE level 4. a patch from Keita Yamaguchi + <keita.yamaguchi at gmail.com>. + + * ext/syslog/syslog.c (mSyslog_close): ditto. + + * ext/syslog/syslog.c (mSyslog_set_mask): ditto. + Mon Jun 30 03:01:35 2008 Yusuke Endoh <mame@t...> * test/net/http/test_http.rb (_test_request__file): specify encoding Index: ext/syslog/syslog.c =================================================================== --- ext/syslog/syslog.c (revision 17725) +++ ext/syslog/syslog.c (revision 17726) @@ -22,6 +22,7 @@ { VALUE str; + rb_secure(4); if (argc < 1) { rb_raise(rb_eArgError, "no log message supplied"); } @@ -38,6 +39,7 @@ /* Syslog module methods */ static VALUE mSyslog_close(VALUE self) { + rb_secure(4); if (!syslog_opened) { rb_raise(rb_eRuntimeError, "syslog not opened"); } @@ -132,6 +134,7 @@ static VALUE mSyslog_set_mask(VALUE self, VALUE mask) { + rb_secure(4); if (!syslog_opened) { rb_raise(rb_eRuntimeError, "must open syslog before setting log mask"); } -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/