mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 04:19:07 +08:00
16 lines
607 B
Diff
16 lines
607 B
Diff
diff --git a/lib/compress/zstd_lazy.c b/lib/compress/zstd_lazy.c
|
|
index 3d523e8..3dd1426 100644
|
|
--- a/lib/compress/zstd_lazy.c
|
|
+++ b/lib/compress/zstd_lazy.c
|
|
@@ -1296,8 +1296,8 @@ size_t ZSTD_RowFindBestMatch_generic (
|
|
size_t ddsIdx;
|
|
U32 ddsExtraAttempts; /* cctx hash tables are limited in searches, but allow extra searches into DDS */
|
|
U32 dmsTag;
|
|
- U32* dmsRow;
|
|
- BYTE* dmsTagRow;
|
|
+ U32* dmsRow = NULL;
|
|
+ BYTE* dmsTagRow = NULL;
|
|
|
|
if (dictMode == ZSTD_dedicatedDictSearch) {
|
|
const U32 ddsHashLog = dms->cParams.hashLog - ZSTD_LAZY_DDSS_BUCKET_LOG;
|