diff options
| author | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-07-28 21:14:30 +0000 |
|---|---|---|
| committer | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-07-28 21:14:30 +0000 |
| commit | e34b8e588673905f77d224f5554d6bf5f27063df (patch) | |
| tree | 70dd28d5476b62c7f09f55a1d1e76ba2c39adb49 | |
| parent | 83e9c695ec088d01db7cd8702759842cbb537457 (diff) | |
| download | ruby-e34b8e588673905f77d224f5554d6bf5f27063df.tar.gz ruby-e34b8e588673905f77d224f5554d6bf5f27063df.tar.xz ruby-e34b8e588673905f77d224f5554d6bf5f27063df.zip | |
* ext/tk/lib/multi-tk.rb: freeze ip_name for security reason.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@10640 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | ext/tk/lib/multi-tk.rb | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -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 diff --git a/ext/tk/lib/multi-tk.rb b/ext/tk/lib/multi-tk.rb index 36cb4388a..78ed1aa6e 100644 --- a/ext/tk/lib/multi-tk.rb +++ b/ext/tk/lib/multi-tk.rb @@ -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 |
