diff options
author | Loïc Hoguin <[email protected]> | 2015-03-03 18:55:22 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2015-03-03 23:16:44 +0100 |
commit | 7d82a632f4837764ac79dfb4986d102060bd3080 (patch) | |
tree | 050bd036fba730bdf99a0e9e96fb227ae704c283 /OTP_VERSION | |
parent | 5f08be20308db9680c9d7e1f01242cedd84a2b4e (diff) | |
download | otp-7d82a632f4837764ac79dfb4986d102060bd3080.tar.gz otp-7d82a632f4837764ac79dfb4986d102060bd3080.tar.bz2 otp-7d82a632f4837764ac79dfb4986d102060bd3080.zip |
Update zlib:zwindowbits/0 type to accept 8 and -8
Commit 7e8f5a776cbfa376e03369d058a90c8dd9f217fc (importing R11B-3)
updated zlib, which had changed what values it accepts for window
bits from 9-15 to 8-15.
From deflate.c:
- windowBits < 9 || windowBits > 15 || level < 0 || level > 9 ||
- strategy < 0 || strategy > Z_HUFFMAN_ONLY) {
+ windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
+ strategy < 0 || strategy > Z_FIXED) {
return Z_STREAM_ERROR;
}
+ if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed */
In inflate.c 8 was already an accepted value.
This commit updates OTP to also accept the values 8 and -8.
Diffstat (limited to 'OTP_VERSION')
0 files changed, 0 insertions, 0 deletions