From e0d856d0ca08a70c7a33cae99b2bf3dc756bac95 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sat, 20 May 2017 01:27:23 -0400 Subject: [PATCH] Clear coverity finding CONSTANT_EXPRESSION_RESULT (CID 179384) --- gzip.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gzip.cpp b/gzip.cpp index 331ce019..2007bf80 100644 --- a/gzip.cpp +++ b/gzip.cpp @@ -9,7 +9,7 @@ NAMESPACE_BEGIN(CryptoPP) // Checks whether the character is valid for ISO/IEC 8859-1 as required by RFC 1952 static inline bool Is8859Character(char c) { const unsigned char cc = static_cast(c); - return (cc >= 32 && cc <= 126) || (cc >= 160 && cc <= 255); + return (cc >= 32 && cc <= 126) || (cc >= 160); } void Gzip::IsolatedInitialize(const NameValuePairs ¶meters)