Clear coverity finding CONSTANT_EXPRESSION_RESULT (CID 179384)
parent
4fef9b8837
commit
e0d856d0ca
2
gzip.cpp
2
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<unsigned char>(c);
|
||||
return (cc >= 32 && cc <= 126) || (cc >= 160 && cc <= 255);
|
||||
return (cc >= 32 && cc <= 126) || (cc >= 160);
|
||||
}
|
||||
|
||||
void Gzip::IsolatedInitialize(const NameValuePairs ¶meters)
|
||||
|
|
|
|||
Loading…
Reference in New Issue