ruby-changes:23210
From: naruse <ko1@a...>
Date: Sun, 8 Apr 2012 22:47:01 +0900 (JST)
Subject: [ruby-changes:23210] naruse:r35260 (trunk): Decrease the default level of try_fdopen.
naruse 2012-04-08 22:46:50 +0900 (Sun, 08 Apr 2012) New Revision: 35260 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=35260 Log: Decrease the default level of try_fdopen. Because it cause Bus Error: http://u32.rubyci.org/~chkbuild/ruby-trunk/log/20120407T230202Z.log.html.gz Modified files: trunk/test/ruby/test_io.rb Index: test/ruby/test_io.rb =================================================================== --- test/ruby/test_io.rb (revision 35259) +++ test/ruby/test_io.rb (revision 35260) @@ -1455,7 +1455,7 @@ f.close end - def try_fdopen(fd, autoclose = true, level = 100) + def try_fdopen(fd, autoclose = true, level = 50) if level > 0 begin 1.times {return try_fdopen(fd, autoclose, level - 1)} -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/