lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


>    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