fixed issue #49, reported by Hanno Böck (@hannob)

This commit is contained in:
Yann Collet 2015-10-23 12:45:02 +01:00
parent eeb8ba18d1
commit fc60883d42

View File

@ -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;