in reply to Re: Use of freed value in iteration
in thread Use of freed value in iteration

$systems is a hash of hashes i.e. $system{$sys}{$uid} where $sys is a system for example, email and $uid is a userid on that system. The module here is Mozilla::LDAP.

Replies are listed 'Best First'.
Re^3: Use of freed value in iteration
by salva (Canon) on Sep 08, 2005 at 15:09 UTC
    Could you show us the code where $system is populated?

    Also, use Devel::Peek to print the internals of some of its values and let us see the output. For instance:

    use Devel::Peek; ... $system{some_host}{some_user} = $ldap->whatever(); Dump($system{some_host}{some_user});