From 2eab0c779ade015319a8e1848f3f006f962f4e01 Mon Sep 17 00:00:00 2001 From: Ricardo Constantino Date: Thu, 4 May 2017 17:09:38 +0100 Subject: lua: increase subprocess stdout limit to 64MB --- player/lua.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'player') diff --git a/player/lua.c b/player/lua.c index 62f42baea1..35f07ef663 100644 --- a/player/lua.c +++ b/player/lua.c @@ -1154,7 +1154,7 @@ static int script_subprocess(lua_State *L) lua_pop(L, 1); // - lua_getfield(L, 1, "max_size"); // m - int64_t max_size = lua_isnil(L, -1) ? 16 * 1024 * 1024 : lua_tointeger(L, -1); + int64_t max_size = lua_isnil(L, -1) ? 64 * 1024 * 1024 : lua_tointeger(L, -1); struct subprocess_cb_ctx cb_ctx = { .log = ctx->log, -- cgit v1.2.3