Merge pull request #22057 from elasota/fix-compressed-zero-byte

Fix get_8 returning 0 for last byte of compressed files
This commit is contained in:
Rémi Verschelde 2018-09-14 09:15:04 +02:00 committed by GitHub
commit 319a0a319b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -293,7 +293,6 @@ uint8_t FileAccessCompressed::get_8() const {
} else { } else {
read_block--; read_block--;
at_end = true; at_end = true;
ret = 0;
} }
} }