http://qs1969.pair.com?node_id=1100259


in reply to Re^5: Memory leak detection
in thread Memory leak detection

There is a second way for objects not getting released that is not really a cyclic reference: If you have a subroutine that closes over a variable, the value of that variable will not get released. This is especially nasty if you're dealing with lots of callbacks (like in AnyEvent) and don't keep track of which callback closes over which variable.