From: Dan Kegel Date: Sat, 13 Jun 2020 23:33:59 +0000 (-0700) Subject: deflate_slow: Suppress a static analysis warning triggered by recent refactoring... X-Git-Tag: 1.9.9-b1~207 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ae0fcc0add216e6c2724354461c43f7952c3e290;p=thirdparty%2Fzlib-ng.git deflate_slow: Suppress a static analysis warning triggered by recent refactoring c459b4f5. --- diff --git a/deflate_slow.c b/deflate_slow.c index 0f7f86b5..75f4a8bc 100644 --- a/deflate_slow.c +++ b/deflate_slow.c @@ -119,7 +119,7 @@ ZLIB_INTERNAL block_state deflate_slow(deflate_state *s, int flush) { } Assert(flush != Z_NO_FLUSH, "no flush?"); if (s->match_available) { - bflush = zng_tr_tally_lit(s, s->window[s->strstart-1]); + (void) zng_tr_tally_lit(s, s->window[s->strstart-1]); s->match_available = 0; } s->insert = s->strstart < MIN_MATCH-1 ? s->strstart : MIN_MATCH-1;