Fix minor bug in protocol compression.

This erroneous last caused a warning (which threw an error) and masked the error in decompression.  It was found when accidentally attempting to decompress an already-decompressed file, so not a big deal in practice which is probably why it hug around for so long.
This commit is contained in:
David Steele
2016-02-27 10:11:58 -05:00
parent d4c46acf48
commit 0b317d9040
-1
View File
@@ -303,7 +303,6 @@ sub binaryXfer
else
{
$iBlockSize = 0;
last;
}
}
while ($iZLibStatus != Z_STREAM_END && $iUncompressedBufferSize > 0 && $iBlockSize > 0);