benhell (Ben Hellerstein)
- Login: benhell
- Email: ruby_bugs@golem.rubyspeak.com
- Registered on: 09/01/2014
- Last sign in: 09/01/2014
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
09/01/2014
-
05:52 AM Ruby Bug #10191 (Closed): Possible memory leak using dup and setting an unassigned instance variable (Windows)
- Steps:
1. Run the following code (tested on Window 7):
~~~ruby
class Leaky
attr_accessor :v
def leak; d = dup; d.v = nil; end
end
l = Leaky.new
while true; l.leak; end
~~~
2. Watch the memory usage i...