From: Przemyslaw Skibinski Date: Fri, 24 Feb 2017 08:24:55 +0000 (+0100) Subject: fix uninitialized value warning X-Git-Tag: v1.1.4~1^2~42^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F567%2Fhead;p=thirdparty%2Fzstd.git fix uninitialized value warning --- diff --git a/tests/decodecorpus.c b/tests/decodecorpus.c index d75025a83..8de5c252b 100644 --- a/tests/decodecorpus.c +++ b/tests/decodecorpus.c @@ -609,7 +609,7 @@ static U32 generateSequences(U32* seed, frame_t* frame, seqStore_t* seqStore, { /* The total length of all the matches */ size_t const remainingMatch = contentSize - literalsSize; - size_t excessMatch; + size_t excessMatch = 0; U32 i; U32 numSequences;