Update lgc.cpp

This commit is contained in:
GRH 2025-04-02 22:23:50 +03:00 committed by GitHub
parent 3cde5335fd
commit c78471a7a5
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -443,7 +443,7 @@ static void shrinkstack(lua_State* L)
if (3 * size_t(s_used) < size_t(L->stacksize) && 2 * (BASIC_STACK_SIZE + EXTRA_STACK) < L->stacksize)
luaD_reallocstack(L, L->stacksize / 2, 0); // still big enough...
condhardstacktests(luaD_reallocstack(L, s_used));
condhardstacktests(luaD_reallocstack(L, s_used, 0));
}
/*