1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/tk/lib/multi-tk.rb: freeze ip_name for security reason.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@10640 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nagai 2006-07-28 21:14:30 +00:00
parent d10ecdfe73
commit f89633f03d
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Sat Jul 29 06:12:06 2006 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
* ext/tk/lib/multi-tk.rb: freeze ip_name for security reason.
Sat Jul 29 01:23:52 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
* lib/logger.rb: improves the amount of documentation that Rdoc

View file

@ -949,7 +949,7 @@ class MultiTkIp
def _create_slave_ip_name
name = @@SLAVE_IP_ID.join('')
@@SLAVE_IP_ID[1].succ!
name
name.freeze
end
private :_create_slave_ip_name