Re: Bug in lua 5.2.1?
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: Bug in lua 5.2.1?
- From: Nikolay Zapolnov <zapolnov@...>
- Date: Thu, 6 Dec 2012 00:47:04 +0400
>> 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.