You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For inputs smaller than `1 << ZSTD_WINDOWLOG_MIN` bytes, the pre-existing
code in `ZSTD_adjustCParams_internal()` temporarily calculated an illegally
small window log for the purposes of adjusting the hash- and chain-table
sizes, before fixing that bad window log to comply with the minimums. The new
code clamped the window log earlier and therefore didn't shrink the tables as
much. This commit fixes that to mirror the pre-existing behavior.
This resolves the remaining regression test differences.
0 commit comments