diff --git a/ssl/s3_srvr.c b/ssl/s3_srvr.c index 046f7b77..0147967e 100644 --- a/ssl/s3_srvr.c +++ b/ssl/s3_srvr.c @@ -2088,6 +2088,11 @@ int ssl3_send_certificate_request(SSL *s) #ifdef NETSCAPE_HANG_BUG if (!SSL_IS_DTLS(s)) { + if (!BUF_MEM_grow_clean(buf, s->init_num + 4)) + { + OPENSSL_PUT_ERROR(SSL, ssl3_send_certificate_request, ERR_R_BUF_LIB); + goto err; + } p=(unsigned char *)s->init_buf->data + s->init_num; /* do the header */ *(p++)=SSL3_MT_SERVER_DONE;