vbox: increase initial static memory buffer

due to changes in #1987 pthread/malloc the initial allocations are done
via malloc
This commit is contained in:
Alexander Boettcher 2017-04-20 20:42:39 +02:00 committed by Christian Helmuth
parent f52eec5af7
commit d8f60a8ea1

View File

@ -47,7 +47,7 @@ static const bool verbose = false;
* Additionally static constructors are executed currently before the libc
* is done with initialization and so we also have no Env pointer here.
*/
static char buffer[2048];
static char buffer[3 * 1024];
static unsigned buffer_len = 0;
static bool initial_memory(void * ptr)