in reply to Memory leak!
And what is this loop meant to do?
for (my $i=0; $i < $dirNum; $i++) { my $gftDirName = $ProdRec[$i]{'remoteDir'}; }
You assign a bunch of values from a global array of hashes to a loop-local lexical scalar, and then do nothing with any of them?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Memory leak!
by joeymac (Acolyte) on Dec 12, 2011 at 19:31 UTC |