Further de-obfuscation

A similar change that probably should have been wrapped into
commit e0926ef49d.

Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3010)
This commit is contained in:
Benjamin Kaduk 2017-03-21 16:30:21 -05:00 committed by Richard Levitte
parent 8c55c46147
commit 0acee5045a

View file

@ -1933,12 +1933,11 @@ int check_in_list(SSL *s, unsigned int group_id, const unsigned char *groups,
if (group_id == share_id
&& (!checkallow
|| tls_curve_allowed(s, groups, SSL_SECOP_CURVE_CHECK))) {
break;
return 1;
}
}
/* If i == num_groups then not in the list */
return i < num_groups;
return 0;
}
#endif