Add test for raw content starting with dict header

This commit is contained in:
Stella Lau
2017-08-29 18:36:18 -07:00
parent 623e3cd40b
commit a6e20e1bd7
2 changed files with 20 additions and 1 deletions
-1
View File
@@ -4174,7 +4174,6 @@ size_t ZSTD_compress_generic (ZSTD_CCtx* cctx,
/* compression stage */
#ifdef ZSTD_MULTITHREAD
if (cctx->appliedParams.nbThreads > 1) {
assert(cctx->mtctx != NULL);
size_t const flushMin = ZSTDMT_compressStream_generic(cctx->mtctx, output, input, endOp);
DEBUGLOG(5, "ZSTDMT_compressStream_generic : %u", (U32)flushMin);
if ( ZSTD_isError(flushMin)