diff options
-rw-r--r-- | lib/lz4opt.h | 2 |
1 files changed, 1 insertions, 1 deletions
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); |