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
1 changed files with 2 additions and 2 deletions
|
@ -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 a new issue