fixed checksum
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
v1.0.1
|
v1.0.1
|
||||||
New : contrib/pzstd, parallel version of zstd, by Nick Terrell
|
New : contrib/pzstd, parallel version of zstd, by Nick Terrell
|
||||||
added : NetBSD install target (#338)
|
added : NetBSD install target (#338)
|
||||||
|
Improved : variable compression speed improvements on batches of small files.
|
||||||
Fixed : CLI -d output to stdout by default when input is stdin (#322)
|
Fixed : CLI -d output to stdout by default when input is stdin (#322)
|
||||||
Fixed : CLI correctly detects console on Mac OS-X
|
Fixed : CLI correctly detects console on Mac OS-X
|
||||||
Fixed : Legacy decoders use unified error codes (#341), reported by benrg
|
Fixed : Legacy decoders use unified error codes (#341), reported by benrg
|
||||||
|
|||||||
@@ -247,7 +247,8 @@ static size_t ZSTD_continueCCtx(ZSTD_CCtx* cctx, ZSTD_parameters params, U64 fra
|
|||||||
cctx->dictID = 0;
|
cctx->dictID = 0;
|
||||||
cctx->loadedDictEnd = 0;
|
cctx->loadedDictEnd = 0;
|
||||||
{ int i; for (i=0; i<ZSTD_REP_NUM; i++) cctx->rep[i] = repStartValue[i]; }
|
{ int i; for (i=0; i<ZSTD_REP_NUM; i++) cctx->rep[i] = repStartValue[i]; }
|
||||||
cctx->seqStore.litLengthSum = 0; /* force reset stats */
|
cctx->seqStore.litLengthSum = 0; /* force reset of btopt stats */
|
||||||
|
XXH64_reset(&cctx->xxhState, 0);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user