Commit cce931f2 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

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
parent 34089c93
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -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]) {