the array sizes _can_ differ and the arrays can still match, since chomp

is used at times but it doesn't decrease the array size
This commit is contained in:
Daniel Stenberg 2004-10-25 11:28:01 +00:00
parent 34089c93bb
commit cce931f27d
1 changed files with 0 additions and 4 deletions

View File

@ -138,10 +138,6 @@ sub compareparts {
my $sizefirst=scalar(@$firstref);
my $sizesecond=scalar(@$secondref);
if($sizefirst != $sizesecond) {
return -1;
}
for(1 .. $sizefirst) {
my $index = $_ - 1;
if($firstref->[$index] ne $secondref->[$index]) {