http://qs321.pair.com?node_id=1100286


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

Strictly speaking this is not a "leak". The variables are still accessible from the code. They will get released when the subroutine goes out of scope. Of course, if one of subroutines references variable that keeps reference to that subroutine, then neither code, nor the variable will be released, but this is circular reference again :)