Merge pull request #743 from facebook/fullbench

compress_generic() automatic optimization opportunities
This commit is contained in:
Yann Collet
2017-07-03 21:26:38 -07:00
committed by GitHub
9 changed files with 329 additions and 165 deletions
+1
View File
@@ -198,6 +198,7 @@ ZSTD_DCtx* ZSTD_createDCtx_advanced(ZSTD_customMem customMem)
if (!dctx) return NULL;
dctx->customMem = customMem;
dctx->legacyContext = NULL;
dctx->previousLegacyVersion = 0;
ZSTD_initDCtx_internal(dctx);
return dctx;
}