lua-users home
lua-l archive

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


> 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