[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Stack overflow in luaO_pushvfstring
- From: Roberto Ierusalimschy <roberto@...>
- Date: Mon, 6 Jul 2020 09:37:55 -0300
> We found a stack overflow in lua. Here’s the details:
>
> [...]
That may be a problem due to how you compiled Lua. Have you tried a smaller
C-stack limit? Add the following in the beginning of your script and see
how it goes:
debug.setcstacklimit(1000)
(It may be necessary a limit even smaller than 1000...)
-- Roberto