fixed : dictionary compression with new advanced API in Multi-threading mode

dev
Yann Collet 2017-06-30 16:01:02 -07:00
parent d8b33a598d
commit 58bd0e70fc
1 changed files with 1 additions and 0 deletions

View File

@ -474,6 +474,7 @@ size_t ZSTDMT_compress_advanced(ZSTDMT_CCtx* mtctx,
if (nbChunks==1) { /* fallback to single-thread mode */
ZSTD_CCtx* const cctx = mtctx->cctxPool->cctx[0];
if (cdict) return ZSTD_compress_usingCDict_advanced(cctx, dst, dstCapacity, src, srcSize, cdict, params.fParams);
return ZSTD_compress_advanced(cctx, dst, dstCapacity, src, srcSize, NULL, 0, params);
}