eugene (Eugene Pimenov)
- Login: eugene
- Email: eugene@libc.st
- Registered on: 04/17/2015
- Last sign in: 12/20/2016
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 0 | 0 |
Activity
12/20/2016
-
09:43 AM Ruby Bug #12907: rb_respond_to() return value is incorrect
- We did hit this bug on our system and did a deep dive in it yesterday.
The code to reproduce the issue is:
~~~ c
rb_respond_to(rb_eval_string("BasicObject.new"), rb_intern("anythinghere"))
~~~
It always returns ``1`` (``TRUE``...
04/17/2015
-
12:39 AM Ruby Bug #10942: Suspected memory leak
- I reduced the test case to
~~~ruby
require 'stringio'
require 'securerandom'
loop do
for i in 1..100
StringIO.new << SecureRandom.hex
end
GC.start
end
~~~
Can reproduce on trunk.