Activity
From 02/19/2010 to 03/20/2010
03/18/2010
- 02:02 PM Backport #2739 (Assigned): ruby 1.8.7 built with pthreads hangs under some circumstances
- Backport r26371, r26327, r26972.
- 01:57 PM Backport #2739 (Closed): ruby 1.8.7 built with pthreads hangs under some circumstances
- This issue was solved with changeset r26972.
Joel, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
- 01:41 PM Backport #2739 (Open): ruby 1.8.7 built with pthreads hangs under some circumstances
03/17/2010
- 09:39 PM Bug #2973 (Closed): rb_bug - Segmentation fault - error.c:213
- 06:27 AM Bug #2974 (Assigned): WEBrick error in httpstatus
- 04:51 AM Bug #2973 (Third Party's Issue): rb_bug - Segmentation fault - error.c:213
- It is MySQL adaptor or libmysql's bug, please report this to there.
- 02:27 AM Bug #2974: WEBrick error in httpstatus
- HTTPStatus has some Status classes, which derive from StandardError < Exception.
In Status::initialize, message (which should return a string) is defined to self.class (which is not a string). When the exception is raised, trying to read its me...
03/16/2010
- 10:04 PM Bug #2973: rb_bug - Segmentation fault - error.c:213
- hi, i have a ruby-1.8.7 install on netbsd-5, which is crashing quite frequently. i can provide the core and other additional info.
here is a backtrace:
Program terminated with signal 6, Aborted.
#0 0xbbac1767 in _lwp_kill () from /usr/lib/li...
- 04:08 PM Bug #2972 (Rejected): Windows での gets(nil)
- バイナリファイルを読むなら
'ARGF.binmode; p gets(nil).size'
とバイナリモードにしてください。
- 03:58 PM Bug #2972: Windows での gets(nil)
- 久保田と申します。
mingw 版 1.8.7 で gets(nil) の動作に不具合があるようなので
ご報告させていただきます。
(cygwin 版では発生しません)
読み込まれるバイト数が不安定なのと、
得られた文字列も途中から入力のファイルと異なっています。
$ wc -c a.aes-128-ecb
557088 a.aes-128-ecb
$ od -j 352 -t x1z a.aes-128-ecb | head
0000540 a9 22 ...
03/13/2010
- 07:48 PM Backport #2953 (Assigned): nkf segfaults with --numchar-input
- 07:45 PM Backport #2739 (Closed): ruby 1.8.7 built with pthreads hangs under some circumstances
- 11:07 AM Backport #2953 (Closed): nkf segfaults with --numchar-input
- This issue was solved with changeset r26903.
Nobuyoshi, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
- 09:07 AM Backport #2953: nkf segfaults with --numchar-input
- http://pc12.2ch.net/test/read.cgi/tech/1267668057/375 より引用。
$ cat a.rb
require 'nkf'
sikaru = NKF.nkf('-w, --numchar-input', %w(20B9F).map{|s| "#{s};"}.join)
p sikaru
puts sikaru
$ ruby -Ku ./a.rb
a.rb:2: [BUG] Segmentation fault
ruby 1....
03/09/2010
- 01:52 PM Bug #1879 (Closed): RDoc error in documentation
- 01:18 PM Bug #2790 (Third Party's Issue): IRB crash
- This appears to be a bug in Curb (which has native extensions and thus can segfault if not coded properly).
You should create an issue on github: http://github.com/taf2/curb/issues
03/06/2010
03/05/2010
- 10:53 PM Bug #2838: Ruby 1.8.7 (2009-06-12 patchlevel 174) strange round behaviour
- ?> a = 64.01+128.38+123.96
=> 316.35
>>
?> b = 300+16.35
=> 316.35
?> (a * 10).round
=> 3163
>> (b * 10).round
=> 3164
03/04/2010
- 05:03 PM Bug #2836 (Assigned): win32ole + excel: crash when assigning large array
- 09:15 AM Bug #2836 (Feedback): win32ole + excel: crash when assigning large array
- What do you mean by `crash'?
* an exception occurred,
* ruby interpreter segfaulted,
* Excel aborted,
* the blue-screen-of-death occurred, or
* a HDD destroyed physically?
03/03/2010
- 11:46 PM Bug #2836: win32ole + excel: crash when assigning large array
- The following code examples crashes with ruby 1.8.7 (2010-01-10 patchlevel 249) [i386-mswin32], works with ruby 1.9.1p378 (2010-01-10 revision 26273) [i386-mswin32]:
require 'win32ole'
x=WIN32OLE.new 'Excel.Application'
x.visible = ...
- 08:34 PM Backport #2739 (Assigned): ruby 1.8.7 built with pthreads hangs under some circumstances
03/01/2010
- 08:49 AM Bug #2828: Timeout doesn't work as expected if ruby process blocks
- > TCPSocket.new "fireflyseason2.com", "echo"
Blocks ruby process for a while because the domain is not available. If you would try to surround it with an timeout Block (timeout.rb) this will not work because of blocking:
> timeout(timeout) d...
02/25/2010
- 03:30 AM Bug #2790: IRB crash
- Not sure if this is an IRB bug, but thought you guys should know.
** My Ruby version: ruby 1.8.7 (2009-06-12 patchlevel 174) [x86_64-linux]
** Version of Rubygems: 1.3.5
** Version of the Curb gem: 0.6.6.0
Transcript of IRB session:
---...
02/23/2010
- 08:48 AM Bug #2781: crash when gc_mark()ing already free'd locals of cloned scope
- This causes a segfault on >= 1.8.7-p248
---
def def_x(arg)
Object.send :define_method, :x do
def_x lambda{}
end
end
GC.stress = true # unnecessary but makes it occur faster
def_x nil
n = 3 # minimum for crash, increase if...
02/22/2010
- 09:26 PM Backport #2779: Net::HTTP#get raises NoMethodError
- I think this was introduced in Revision 25851:
require 'net/http'
nh = Net::HTTP.new("does_not_exist_at_all.com")
nh.get("/")
NoMethodError: undefined method `closed?' for nil:NilClass
from /usr/local/lib/ruby/1.8/net/http.rb:1060:in `requ...
02/20/2010
- 02:25 AM Bug #2764 (Rejected): Hash.new inconsistency when initialized with an enumerable
- This is by design.
Note that the behavior is actually different for all types of objects, even immediates
h = Hash.new(42)
h[:foo] # ==> 42
h.keys # ==> []
h = Hash.new { |hash, key| hash[key] = 42 }
h[:foo] # ==> 42
h.keys # ==...
- 02:25 AM Bug #2765: unable to cross compile 1.8.7p249
- using 1.8.7p-249 to cross compile 1.8.7p249 results in
...
compiling dl
make[1]: Entering directory `/home/rdp/.rake-compiler/builds/ruby-1.8.7-p249/ext/dl'
Generating callback.func
mkmf.rb can't find header files for ruby at /home/rdp/inst...
- 01:45 AM Bug #2764: Hash.new inconsistency when initialized with an enumerable
- When initializing a Hash with an enumerable as default value, Hash.new(obj) and Hash.new(&block) have different behaviours.
Example:
h = Hash.new([])
h[10] << 20
h #=> {}
h = Hash.new { |hash, key| hash[key] = [] }
hash[10] << 20
h #=> ...
02/19/2010
- 02:24 AM Backport #2758: NoMethodError instead of Errno::ECONNREFUSED when Net::HTTP cannot connect
- The code:
require net/http.rb
n = Net::HTTP.new('server-that-is-not-listening-on-port-eighty')
n.request_head('/')
Used to throw: "Errno::ECONNREFUSED: Connection refused - connect(2)"
But after http://svn.ruby-lang.org/cgi-bin/viewvc.c...
Also available in: Atom