mirror of
https://github.com/openssl/openssl.git
synced 2024-11-27 05:21:51 +08:00
Fix a few double ;
Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/1618)
This commit is contained in:
parent
3e6c1da822
commit
0fe2a0af89
@ -2365,7 +2365,7 @@ int s_client_main(int argc, char **argv)
|
||||
/* goto end; */
|
||||
}
|
||||
|
||||
sbuf_len -= i;;
|
||||
sbuf_len -= i;
|
||||
sbuf_off += i;
|
||||
if (sbuf_len <= 0) {
|
||||
read_ssl = 1;
|
||||
|
@ -656,7 +656,7 @@ dtls1_process_out_of_seq_message(SSL *s, const struct hm_header_st *msg_hdr)
|
||||
}
|
||||
} else {
|
||||
if (frag_len != msg_hdr->msg_len) {
|
||||
return dtls1_reassemble_fragment(s, msg_hdr);;
|
||||
return dtls1_reassemble_fragment(s, msg_hdr);
|
||||
}
|
||||
|
||||
if (frag_len > dtls1_max_handshake_message_len(s))
|
||||
|
@ -2944,7 +2944,7 @@ WORK_STATE tls_post_process_client_key_exchange(SSL *s, WORK_STATE wst)
|
||||
sizeof(labelbuffer), NULL, 0,
|
||||
0) <= 0) {
|
||||
ossl_statem_set_error(s);
|
||||
return WORK_ERROR;;
|
||||
return WORK_ERROR;
|
||||
}
|
||||
|
||||
BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
|
||||
|
Loading…
Reference in New Issue
Block a user