lua-users home
lua-l archive

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


Yes, we use luaL_Buffer. Sorry, I didn't describe the context clearly a moment ago. We use luaL_buffer and there is some stack modification, which not follow the lua string buffer documentation.
Thanks for your clue. I'll verify it.

Roberto Ierusalimschy <roberto@inf.puc-rio.br> 于2022年7月13日周三 22:54写道:
Are you using string buffers (luaL_Buffer)? They use to-be-closed
variables. Maybe you are removing a buffer from the stack without
properly finalizing it first.

-- Roberto