Properly Initialize Repcode Values
This commit is contained in:
parent
7097a03749
commit
8b241da4df
@ -89,11 +89,13 @@ size_t ZSTD_compressBlock_doubleFast_generic(
|
|||||||
lowestDictIndex + dictIndexDelta :
|
lowestDictIndex + dictIndexDelta :
|
||||||
localLowestIndex;
|
localLowestIndex;
|
||||||
|
|
||||||
(void)dictMode;
|
assert(dictMode == ZSTD_noDict || dictMode == ZSTD_dictMatchState);
|
||||||
|
|
||||||
/* init */
|
/* init */
|
||||||
ip += (ip==localLowest);
|
ip += (dictMode == ZSTD_noDict && ip == localLowest);
|
||||||
{ U32 const maxRep = (U32)(ip-localLowest);
|
{ U32 const maxRep = dictMode == ZSTD_dictMatchState ?
|
||||||
|
(U32)(ip - dictLowest) :
|
||||||
|
(U32)(ip - localLowest);
|
||||||
if (offset_2 > maxRep) offsetSaved = offset_2, offset_2 = 0;
|
if (offset_2 > maxRep) offsetSaved = offset_2, offset_2 = 0;
|
||||||
if (offset_1 > maxRep) offsetSaved = offset_1, offset_1 = 0;
|
if (offset_1 > maxRep) offsetSaved = offset_1, offset_1 = 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user