From ab4bd93f59dce5d116f1c95373a64cc39ccd6990 Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Mon, 30 Oct 2017 16:10:25 -0700 Subject: fixed minor initialization warning --- lib/lz4opt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lz4opt.h b/lib/lz4opt.h index bd956ee..2daf17e 100644 --- a/lib/lz4opt.h +++ b/lib/lz4opt.h @@ -211,7 +211,7 @@ LZ4_FORCE_INLINE int LZ4HC_HashChain_GetAllMatches ( const BYTE* const ip, const BYTE* const iHighLimit, size_t best_mlen, LZ4HC_match_t* matches, const int fullUpdate) { - const BYTE* matchPtr; + const BYTE* matchPtr = NULL; int matchLength = LZ4HC_FindLongerMatch(ctx, ip, iHighLimit, (int)best_mlen, &matchPtr, ctx->searchNum); if ((size_t)matchLength <= best_mlen) return 0; assert(matches != NULL); -- cgit v0.12