From d8f60a8ea13b179f4d8da3d21507019133159a2b Mon Sep 17 00:00:00 2001 From: Alexander Boettcher Date: Thu, 20 Apr 2017 20:42:39 +0200 Subject: [PATCH] vbox: increase initial static memory buffer due to changes in #1987 pthread/malloc the initial allocations are done via malloc --- repos/ports/src/virtualbox/libc.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos/ports/src/virtualbox/libc.cc b/repos/ports/src/virtualbox/libc.cc index 5d3f1018b3..5feff63d46 100644 --- a/repos/ports/src/virtualbox/libc.cc +++ b/repos/ports/src/virtualbox/libc.cc @@ -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)