mirror of
https://github.com/facebook/zstd.git
synced 2024-12-15 17:20:07 +08:00
fixed issue #49, reported by Hanno Böck (@hannob)
This commit is contained in:
parent
eeb8ba18d1
commit
fc60883d42
@ -602,6 +602,7 @@ static size_t HUF_readStats(BYTE* huffWeight, size_t hwSize, U32* rankStats,
|
||||
|
||||
/* get last non-null symbol weight (implied, total must be 2^n) */
|
||||
tableLog = BIT_highbit32(weightTotal) + 1;
|
||||
if (tableLog > HUF_ABSOLUTEMAX_TABLELOG) return ERROR(corruption_detected);
|
||||
{
|
||||
U32 total = 1 << tableLog;
|
||||
U32 rest = total - weightTotal;
|
||||
|
Loading…
Reference in New Issue
Block a user