in reply to Re^3: Creating members of hash of hashes parallelly
in thread Creating members of hash of hashes parallelly
then following comes to stdout:foreach $path ( keys %db_hash ) { print "List for $path...\n"; foreach $index ( keys %{ $db_hash{$path} } ) { print "END: ", $db_hash{$path}{$index}{END}, "\n"; } }
line 66 is the line of "print END" routine. In this case,Use of uninitialized value in print at ./utk.pl line 66, <FH> line 246 +99. Use of uninitialized value in print at ./utk.pl line 66, <FH> line 246 +99.
tries to access$db_hash{$path}{$index}{END}
... which does not exist anyway. It was a mistake that I did not use the Dumper.$db_hash{$path}{'index'}{END}
|
|---|