lua-users home
lua-l archive

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


> I can't find a quote right now, but once there was this guarantee that 
> you cannot crash a program from within Lua code.

This is mandatory for an embedded language.

If you can crash the host from a Lua script, it's either a bug in Lua
or more proably in a C library exported to Lua. So, C libraries should
ensure the safety of the host, as far as they are concerned.