Intermezzo commit
Rob Kinyon [Mon, 25 Jan 2010 13:51:50 +0000 (08:51 -0500)]
lib/DBM/Deep/Engine.pm
t/55_recursion.t

index 5d9b034..f2346b4 100644 (file)
@@ -414,6 +414,8 @@ sub _descend {
         %$value = %temp;
         bless $value, 'DBM::Deep::Hash' unless Scalar::Util::blessed( $value );
     }
+
+    return;
 }
 
 1;
index edec0d9..707f9f5 100644 (file)
@@ -13,7 +13,7 @@ while ( my $dbm_maker = $dbm_factory->() ) {
 
     my $h = {};
     my $tmp = $h;
-    for (1..4) { # 98 is ok, 99 is bad.
+    for (1..99) { # 98 is ok, 99 is bad.
         %$tmp = ("" => {});
         $tmp = $tmp->{""};
     }