beta3 File::Path warning fix
Dean Roehrich [Wed, 7 Feb 1996 00:04:39 +0000 (18:04 -0600)]
The following patch fixes a warning from File::Path.  Apply over beta3.

lib/File/Path.pm

index 05c5bd9..6cb675b 100644 (file)
@@ -120,7 +120,8 @@ sub mkpath{
 
 sub rmtree {
     my($roots, $verbose, $safe) = @_;
-    my(@files,$count);
+    my(@files);
+    my($count) = 0;
     $roots = [$roots] unless ref $roots;
 
     foreach $root (@{$roots}) {