Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
zlib: fix length parsing for uncompressed data
- data length is stored as unsigned short (pigz actually creates blocks of 65K length) - when calculating the one's complement of the length, Python will turn it into a negative number. Use AND to make it positive (unsigned).
- Loading branch information