]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
Don't set bflush to zero since it is assigned before used.
authorNathan Moinvaziri <nathan@solidstatenetworks.com>
Wed, 10 Jun 2020 05:58:18 +0000 (22:58 -0700)
committerHans Kristian Rosbach <hk-github@circlestorm.org>
Sat, 27 Jun 2020 14:24:14 +0000 (16:24 +0200)
deflate_slow.c

index 75f4a8bc7b350ed30c9fc534afb1d98cf7291081..b526be46302bd50303d3852107af9b0e558c4745 100644 (file)
@@ -16,7 +16,7 @@
  */
 ZLIB_INTERNAL block_state deflate_slow(deflate_state *s, int flush) {
     Pos hash_head;           /* head of hash chain */
-    int bflush = 0;          /* set if current block must be flushed */
+    int bflush;              /* set if current block must be flushed */
 
     /* Process the input block. */
     for (;;) {