Increase print buffer (10K instead of just 2K).
This commit is contained in:
parent
0572abbf53
commit
29dc25e88a
1 changed files with 1 additions and 1 deletions
|
@ -827,7 +827,7 @@ int BIO_vprintf (BIO *bio, const char *format, va_list args)
|
|||
#ifdef USE_ALLOCATING_PRINT
|
||||
char *hugebuf;
|
||||
#else
|
||||
MS_STATIC char hugebuf[1024*2];
|
||||
MS_STATIC char hugebuf[1024*10];
|
||||
#endif
|
||||
|
||||
#ifndef USE_ALLOCATING_PRINT
|
||||
|
|
Loading…
Reference in a new issue