]> git.p6c8.net - devedit.git/commitdiff
Small cleanup
authorpcanterino <>
Fri, 7 Jan 2005 12:32:58 +0000 (12:32 +0000)
committerpcanterino <>
Fri, 7 Jan 2005 12:32:58 +0000 (12:32 +0000)
modules/Tool.pm

index 0b1159d5b1386e5cb990ded06bc9369bb9eeb9ce..9ba39c2690a1138f6c965045a0b045c5f85e3493 100644 (file)
@@ -76,7 +76,9 @@ sub check_path($$)
   # Windows allows to go upwards in a path using things like
   # "..." and "...." and so on
 
-  for(my $x=0;$x<length($last)-1;$x++)
+  my $count = length($last)-1;
+
+  for(my $x=0;$x<$count;$x++)
   {
    unless($first =~ m!^[a-z]{1}:(/|\\)$!i)
    {
@@ -87,10 +89,7 @@ sub check_path($$)
   $last = '';
  }
 
- $path  = $first.'/'.$last;
-
- $first = File::Spec->canonpath($first);
- $path  = File::Spec->canonpath($path);
+ $path = File::Spec->canonpath($first.'/'.$last);
 
  # Check if the path is above the root directory
 

patrick-canterino.de