Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1229331

[PATCH 37/38] zlib_deflate/deftree: change always true condition to 1

From Andrzej Hajda <a.hajda@samsung.com>
Newsgroups linux.kernel
Subject [PATCH 37/38] zlib_deflate/deftree: change always true condition to 1
Date 2015-09-21 15:40 +0200
Message-ID <qb9u4-83M-51@gated-at.bofh.it> (permalink)
References <qb9u2-83M-3@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Unsigned value is always greater of equal zero.

The problem has been detected using proposed semantic patch
scripts/coccinelle/tests/unsigned_lesser_than_zero.cocci [1].

[1]: http://permalink.gmane.org/gmane.linux.kernel/2038576

Signed-off-by: Andrzej Hajda <a.hajda@samsung.com>
---
 lib/zlib_deflate/deftree.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/zlib_deflate/deftree.c b/lib/zlib_deflate/deftree.c
index 9b1756b..8bd736e 100644
--- a/lib/zlib_deflate/deftree.c
+++ b/lib/zlib_deflate/deftree.c
@@ -935,7 +935,7 @@ ulg zlib_tr_flush_block(
         zlib_tr_stored_block(s, buf, stored_len, eof);
 
 #ifdef FORCE_STATIC
-    } else if (static_lenb >= 0) { /* force static trees */
+    } else if (1) { /* force static trees */
 #else
     } else if (static_lenb == opt_lenb) {
 #endif
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | Next | Find similar | Unroll thread


Thread

[PATCH 37/38] zlib_deflate/deftree: change always true condition to 1 Andrzej Hajda <a.hajda@samsung.com> - 2015-09-21 15:40 +0200

csiph-web