diff options
| author | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-03-06 15:03:42 +0000 |
|---|---|---|
| committer | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-03-06 15:03:42 +0000 |
| commit | 73d4e8be24302419532c34c0940fe705659e4dd1 (patch) | |
| tree | e64fdffb55266df01657a4cb605de06d40b4cee0 | |
| parent | 3fd003cfb972bd5d0c215d6b46102f10bc4e7777 (diff) | |
| download | ruby-73d4e8be24302419532c34c0940fe705659e4dd1.tar.gz ruby-73d4e8be24302419532c34c0940fe705659e4dd1.tar.xz ruby-73d4e8be24302419532c34c0940fe705659e4dd1.zip | |
* ext/tcltklib/tcltklib.c: fail to call TclTkLib.mainloop when $SAFE==4
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@8092 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | ext/tcltklib/tcltklib.c | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,7 @@ +Mon Mar 7 00:01:04 2005 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp> + + * ext/tcltklib/tcltklib.c: fail to call TclTkLib.mainloop when $SAFE==4 + Sun Mar 6 16:41:33 2005 Minero Aoki <aamine@loveruby.net> * lib/net/http.rb: HTTPHeader holds its header fields as an array diff --git a/ext/tcltklib/tcltklib.c b/ext/tcltklib/tcltklib.c index ff374b07d..aae7ac548 100644 --- a/ext/tcltklib/tcltklib.c +++ b/ext/tcltklib/tcltklib.c @@ -8394,6 +8394,7 @@ Init_tcltklib() #define DEFAULT_EVENTLOOP_DEPTH 7 #endif eventloop_stack = rb_ary_new2(DEFAULT_EVENTLOOP_DEPTH); + OBJ_TAINT(eventloop_stack); watchdog_thread = Qnil; |
