[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Bug in Lua 5.4.2 (github master)
- From: Roberto Ierusalimschy <roberto@...>
- Date: Thu, 5 Nov 2020 10:33:05 -0300
> My colleague found a bug introduced by
> https://github.com/lua/lua/commit/5aa36e894f5a0348dfd19bd9cdcdd27ce8aa5f05
> (Oct 6 15:50:24 No more field 'lua_State.stacksize' ) .
>
> [...]
Many thanks for the report.
Indeed, when the stack grows, what was the extra area becomes part
of the common area, and it may or may not be in use. So, it should
be kept clean all the time.
-- Roberto