mirror of
https://github.com/openssl/openssl.git
synced 2024-12-03 06:54:50 +08:00
Address style feedback comments
Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
parent
4a424545c4
commit
ff8194774c
@ -16,9 +16,9 @@ int WPACKET_allocate_bytes(WPACKET *pkt, size_t len, unsigned char **allocbytes)
|
||||
{
|
||||
if (!WPACKET_reserve_bytes(pkt, len, allocbytes))
|
||||
return 0;
|
||||
|
||||
pkt->written += len;
|
||||
pkt->curr += len;
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
@ -1813,6 +1813,7 @@ int tls_construct_server_key_exchange(SSL *s)
|
||||
*/
|
||||
if ((i == 2) && (type & (SSL_kDHE | SSL_kDHEPSK))) {
|
||||
size_t len = BN_num_bytes(r[0]) - BN_num_bytes(r[2]);
|
||||
|
||||
if (len > 0) {
|
||||
if (!WPACKET_allocate_bytes(&pkt, len, &binval)) {
|
||||
SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
|
||||
|
Loading…
Reference in New Issue
Block a user