in reply to Re: Massive Perl Memory Leak
in thread Massive Perl Memory Leak
%{$datahash{"devinfo"}} = %devinfo; I'm curious as to how the deep nature of %devinfo is copied over to the %datahash branch. As in do any refs to the original var survive? Or is that a 100% clean copy with no strings attached.
Would either of these be equivalent or better syntax? :
$datahash{"devinfo"} = \%devinfo; $datahash{"devinfo"} = %devinfo; # this must be wrong
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Massive Perl Memory Leak
by GrandFather (Saint) on Jun 11, 2007 at 21:15 UTC |