From: Richard Levitte Date: Thu, 9 May 2002 20:14:00 +0000 (+0000) Subject: Make the huge buffer smaller, so the size becomes reasonable for small-stack environm... X-Git-Tag: BEFORE_COMPAQ_PATCH~22 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=06bed643178b836c45d12d091251e24cdf9cbdf4;p=oweals%2Fopenssl.git Make the huge buffer smaller, so the size becomes reasonable for small-stack environments. Notified by Verdon Walker --- diff --git a/crypto/bio/b_print.c b/crypto/bio/b_print.c index 92f9f8f4e6..7c3c9bdf69 100644 --- a/crypto/bio/b_print.c +++ b/crypto/bio/b_print.c @@ -762,7 +762,9 @@ int BIO_vprintf (BIO *bio, const char *format, va_list args) { int ret; size_t retlen; - MS_STATIC char hugebuf[1024*10]; + char hugebuf[1024*2]; /* Was previously 10k, which is unreasonable + in small-stack environments, like threads + or DOS programs. */ char *hugebufp = hugebuf; size_t hugebufsize = sizeof(hugebuf); char *dynbuf = NULL;