lua-users home
lua-l archive

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


2008/7/19 Matthew Paul Del Buono <delbu9c1@erau.edu>:
> As I pointed out earlier in this thread, the state is invalid after it has panicked :)
>
> The only valid operation is lua_close. Yes that is safe to call.

Thanks, that's the key one for me.

> You can avoid a program exit by never returning, e.g., by using a longjmp().

That's what I was planning to do, thanks. As long as I can lua_close
the state to clean up as best I can, that is sufficient for me.

Thanks for the help,
Paul