lua-users home
lua-l archive

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



>> How can I overflow lua stack in this case?

> You need to ensure room on the stack exists using lua_checkstack or
> luaL_checkstack before pushing that many values.

Oops, missed that...
I believed that lua grows stack automatically when doing push/pop using lua API.
Thank you for help! Sorry for annoyance.