ryanf (Ryan Fitzgerald)
- Login: ryanf
- Registered on: 05/27/2017
- Last sign in: 08/20/2017
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
05/27/2017
-
08:09 PM Ruby Bug #13605 (Closed): GC bug calling `ObjectSpace.each_object`
- This code made Ruby bail out with the message "[BUG] rb_gc_mark(): 0x000000040dc740 is T_NONE":
~~~ ruby
ObjectSpace.each_object(Module){|m|
next if (to_ignore.include?(m) rescue true)
if m.respond_to?(:instance_methods)
...