mirror of
https://github.com/openssl/openssl.git
synced 2024-11-28 12:35:22 +08:00
cast to unsigned int, not to int to avoid the warning -- all these
values really are unsigned
This commit is contained in:
parent
1b28ed575b
commit
c23d16ac19
@ -472,8 +472,8 @@ static int get_client_master_key(SSL *s)
|
||||
* random master secret (Bleichenbacher attack) */
|
||||
if ((i < 0) ||
|
||||
((!is_export && (i != EVP_CIPHER_key_length(c)))
|
||||
|| (is_export && ((i != ek) || ((int)s->s2->tmp.clear+i !=
|
||||
EVP_CIPHER_key_length(c))))))
|
||||
|| (is_export && ((i != ek) || (s->s2->tmp.clear+(unsigned int)i !=
|
||||
(unsigned int)EVP_CIPHER_key_length(c))))))
|
||||
{
|
||||
ERR_clear_error();
|
||||
if (is_export)
|
||||
|
Loading…
Reference in New Issue
Block a user