From: W. Felix Handte Date: Wed, 23 May 2018 21:37:47 +0000 (-0400) Subject: ... When I Said "HashTable", I Meant "ChainTable" X-Git-Tag: v1.3.5~3^2~37^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=43606f9c8357ac959a86c937cc2032fa2c82d63f;p=thirdparty%2Fzstd.git ... When I Said "HashTable", I Meant "ChainTable" --- diff --git a/lib/compress/zstd_double_fast.c b/lib/compress/zstd_double_fast.c index b862289bb..3e1a1d3c6 100644 --- a/lib/compress/zstd_double_fast.c +++ b/lib/compress/zstd_double_fast.c @@ -73,7 +73,7 @@ size_t ZSTD_compressBlock_doubleFast_generic( const U32* const dictHashLong = dictMode == ZSTD_dictMatchState ? dms->hashTable : NULL; const U32* const dictHashSmall = dictMode == ZSTD_dictMatchState ? - dms->hashTable : NULL; + dms->chainTable : NULL; const U32 dictLowestIndex = dictMode == ZSTD_dictMatchState ? dms->window.dictLimit : 0; const BYTE* const dictBase = dictMode == ZSTD_dictMatchState ?