fixed legacy version init bug

This commit is contained in:
Yann Collet
2017-07-01 09:09:34 -07:00
parent 4b26306cb8
commit 2485f88bf8
+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;
}