Skip to content

Commit

Permalink
Merge in recent changes from 0.9.6-stable.
Browse files Browse the repository at this point in the history
  • Loading branch information
levitte committed May 9, 2002
1 parent a09d349 commit 8f1e8d2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crypto/bio/b_print.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 8f1e8d2

Please sign in to comment.