mirror of
https://github.com/openssl/openssl.git
synced 2025-04-06 20:20:50 +08:00
Reformulate the if condition in tls_process_new_session_ticket
Improves readability Reviewed-by: Andy Polyakov <appro@openssl.org> (Merged from https://github.com/openssl/openssl/pull/6415)
This commit is contained in:
parent
6cf2dbd9fa
commit
10bda8f8dd
@ -2566,9 +2566,8 @@ MSG_PROCESS_RETURN tls_process_new_session_ticket(SSL *s, PACKET *pkt)
|
||||
&& (!PACKET_get_net_4(pkt, &age_add)
|
||||
|| !PACKET_get_length_prefixed_1(pkt, &nonce)))
|
||||
|| !PACKET_get_net_2(pkt, &ticklen)
|
||||
|| (!SSL_IS_TLS13(s) && PACKET_remaining(pkt) != ticklen)
|
||||
|| (SSL_IS_TLS13(s)
|
||||
&& (ticklen == 0 || PACKET_remaining(pkt) < ticklen))) {
|
||||
|| (SSL_IS_TLS13(s) ? (ticklen == 0 || PACKET_remaining(pkt) < ticklen)
|
||||
: PACKET_remaining(pkt) != ticklen)) {
|
||||
SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_NEW_SESSION_TICKET,
|
||||
SSL_R_LENGTH_MISMATCH);
|
||||
goto err;
|
||||
|
Loading…
x
Reference in New Issue
Block a user