From 43606f9c8357ac959a86c937cc2032fa2c82d63f Mon Sep 17 00:00:00 2001 From: "W. Felix Handte" Date: Wed, 23 May 2018 17:37:47 -0400 Subject: [PATCH] ... When I Said "HashTable", I Meant "ChainTable" --- lib/compress/zstd_double_fast.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ? -- 2.47.2