On Thu, Jan 13, 2005 at 05:43:37PM +0000, David Tweed wrote: > Is it ok to assume that whilst you can get lua function to fail and throw > up an error you can't crash Ion itself from Lua using badly formed > data?
It is not be possible, unless there are bugs. The 'libextl' code will complain if you try to pass nil or a dead object (for which the proxy still exists for Lua) as the first parameter of a function, and the _exported_ functions that accept other object parameters should be able to handle null correctly... -- Tuomo
