the array sizes _can_ differ and the arrays can still match, since chomp
authorDaniel Stenberg <daniel@haxx.se>
Mon, 25 Oct 2004 11:28:01 +0000 (11:28 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 25 Oct 2004 11:28:01 +0000 (11:28 +0000)
is used at times but it doesn't decrease the array size

tests/getpart.pm

index 897ac24..969dfd0 100644 (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]) {