From 4a00f61276a9a38b0427fbae3dbbd86dfb5a0749 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 23 May 2022 10:38:03 -0300 Subject: 'lua_checkstack' doesn't need to check stack overflow 'luaD_growstack' already checks that. This commit also fixes an internal bug in 'luaD_growstack': a large 'n' could cause an arithmetic overflow when computing 'needed'. --- all | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'all') diff --git a/all b/all index 039f6095..86f38ac1 100755 --- a/all +++ b/all @@ -1,7 +1,7 @@ make -s -j cd testes/libs; make -s cd .. # back to directory 'testes' -ulimit -S -s 1000 +ulimit -S -s 1100 if { ../lua -W all.lua; } then echo -e "\n\n final OK!!!!\n\n" else -- cgit v1.2.3-55-g6feb