Merge pull request #961 from shawnl/patch-2

fix unbounded range
This commit is contained in:
Yann Collet 2017-12-22 07:09:18 +01:00 committed by GitHub
commit d55aea3c3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -257,7 +257,7 @@ a decoder is allowed to reject a compressed frame
which requests a memory size beyond decoder's authorized range.
For improved interoperability,
decoders are recommended to be compatible with `Window_Size >= 8 MB`,
decoders are recommended to be compatible with `Window_Size <= 8 MB`,
and encoders are recommended to not request more than 8 MB.
It's merely a recommendation though,
decoders are free to support larger or lower limits,