There are a couple of things happening here.

1) Inside of the closure the var $hashref is re-my'd and thus is a completely new variable, therefore no reference to %monks is transmitted outside the closure. This means that $hashref is undef outside the closure.

2) If you remove the second my and still initialize $hashref to point to %monks then the memory will not be cleaned up because there still exists a variable that has a reference pointing to it so its reference count is not zero but the memory that was previously refered to as %monks is no longer accessible by that name but is accessible by %$hash_ref. Now, if you make $hash_ref = undef; then the final reference to the memory previously labeled %monks will finally go away thus making the reference count to that piece of memory zero and Perl will clean it up if it feels it needs to, otherwise that memory will just go back into the pool to be reused.

At least that is the way I understand it. Those with more internals experience may prove me wrong. =)

Cheers!
--habit

In reply to Re: Memory leaks and reference counting within Perl. by habit_forming
in thread Memory leaks and reference counting within Perl. by DigitalKitty

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.