Fix random magic number in ssl3_output_cert_chain.
Per earlier review comment. The number is wrong anyway. (Neither version does anything since init_buf is initialized to a large size and most functions don't bother sizing it. Future work should rewrite all of this to use a CBB.) Change-Id: I3b58672b328396459a34c6403f8bfb77c96efe9c Reviewed-on: https://boringssl-review.googlesource.com/4650 Reviewed-by: Adam Langley <agl@google.com>
This commit is contained in:
parent
9e1a66070b
commit
a24265cfb1
@ -307,7 +307,7 @@ int ssl3_output_cert_chain(SSL *s, CERT_PKEY *cpk) {
|
|||||||
|
|
||||||
if (cpk == NULL) {
|
if (cpk == NULL) {
|
||||||
/* TLSv1 sends a chain with nothing in it, instead of an alert. */
|
/* TLSv1 sends a chain with nothing in it, instead of an alert. */
|
||||||
if (!BUF_MEM_grow_clean(s->init_buf, 10)) {
|
if (!BUF_MEM_grow_clean(s->init_buf, l)) {
|
||||||
OPENSSL_PUT_ERROR(SSL, ssl3_output_cert_chain, ERR_R_BUF_LIB);
|
OPENSSL_PUT_ERROR(SSL, ssl3_output_cert_chain, ERR_R_BUF_LIB);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user