Merge pull request #2677 from senhuang42/ci_overhaul_2

[CI][2/2] Migrate CI tests which (currently) fail
This commit is contained in:
sen
2021-08-02 09:55:49 -04:00
committed by GitHub
3 changed files with 37 additions and 3 deletions
+4 -3
View File
@@ -1176,9 +1176,10 @@ size_t ZSTD_RowFindBestMatch_generic (
/* DMS/DDS variables that may be referenced laster */
const ZSTD_matchState_t* const dms = ms->dictMatchState;
size_t ddsIdx;
U32 ddsExtraAttempts; /* cctx hash tables are limited in searches, but allow extra searches into DDS */
U32 dmsTag;
/* Initialize the following variables to satisfy static analyzer */
size_t ddsIdx = 0;
U32 ddsExtraAttempts = 0; /* cctx hash tables are limited in searches, but allow extra searches into DDS */
U32 dmsTag = 0;
U32* dmsRow = NULL;
BYTE* dmsTagRow = NULL;