lua-users home
lua-l archive

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


On Sat, Jul 23, 2011 at 01:19, Shmuel Zeigerman <shmuz@013net.net> wrote:
> On 23/07/2011 03:53, Tom N Harris wrote:
>>
>> diff --git a/ffi.c b/ffi.c
>> index 4e9f1df..98e326a 100644
>> --- a/ffi.c
>> +++ b/ffi.c
>> @@ -1699,6 +1699,7 @@ static const luaL_Reg cmodule_mt[] = {
>>
>> static const luaL_Reg jit_mt[] = {
>> {"__gc", &jit_gc},
>> + {NULL, NULL}
>> };
>
> This seems to fix the problem, thanks!

That's great, because I couldn't reproduce the crash when running with
your dlls on my machine.

-- James