From: W. Felix Handte Date: Thu, 9 Sep 2021 20:42:13 +0000 (-0400) Subject: Fall Back in _extDict to New _noDict Rather than Old Merged Impl X-Git-Tag: v1.5.1~1^2~77^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=051b473e7ebce26f0e2ea7d2ced994f2ec2bfb59;p=thirdparty%2Fzstd.git Fall Back in _extDict to New _noDict Rather than Old Merged Impl --- diff --git a/lib/compress/zstd_double_fast.c b/lib/compress/zstd_double_fast.c index 8a8e8263d..380214c57 100644 --- a/lib/compress/zstd_double_fast.c +++ b/lib/compress/zstd_double_fast.c @@ -591,7 +591,7 @@ static size_t ZSTD_compressBlock_doubleFast_extDict_generic( /* if extDict is invalidated due to maxDistance, switch to "regular" variant */ if (prefixStartIndex == dictStartIndex) - return ZSTD_compressBlock_doubleFast_generic(ms, seqStore, rep, src, srcSize, mls, ZSTD_noDict); + return ZSTD_compressBlock_doubleFast_noDict_generic(ms, seqStore, rep, src, srcSize, mls); /* Search Loop */ while (ip < ilimit) { /* < instead of <=, because (ip+1) */