Commit ff819477 authored by Matt Caswell's avatar Matt Caswell
Browse files

Address style feedback comments



Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
parent 4a424545
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}

+1 −0
Original line number Diff line number Diff line
@@ -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,