mirror of
https://github.com/LuaJIT/LuaJIT.git
synced 2025-04-19 13:33:26 +00:00
Compare commits
2 Commits
85c3f2fb6f
...
e76bb50d44
Author | SHA1 | Date | |
---|---|---|---|
![]() |
e76bb50d44 | ||
![]() |
e9e4b6d302 |
@ -108,8 +108,9 @@ LUALIB_API int luaL_loadfilex(lua_State *L, const char *filename,
|
|||||||
copyTV(L, L->top-1, L->top);
|
copyTV(L, L->top-1, L->top);
|
||||||
}
|
}
|
||||||
if (err) {
|
if (err) {
|
||||||
|
const char *fname = filename ? filename : "stdin";
|
||||||
L->top--;
|
L->top--;
|
||||||
lua_pushfstring(L, "cannot read %s: %s", chunkname+1, strerror(err));
|
lua_pushfstring(L, "cannot read %s: %s", fname, strerror(err));
|
||||||
return LUA_ERRFILE;
|
return LUA_ERRFILE;
|
||||||
}
|
}
|
||||||
return status;
|
return status;
|
||||||
|
@ -854,7 +854,10 @@ int lj_record_mm_lookup(jit_State *J, RecordIndex *ix, MMS mm)
|
|||||||
return 0; /* No metamethod. */
|
return 0; /* No metamethod. */
|
||||||
}
|
}
|
||||||
/* The cdata metatable is treated as immutable. */
|
/* The cdata metatable is treated as immutable. */
|
||||||
if (LJ_HASFFI && tref_iscdata(ix->tab)) goto immutable_mt;
|
if (LJ_HASFFI && tref_iscdata(ix->tab)) {
|
||||||
|
mix.tab = TREF_NIL;
|
||||||
|
goto immutable_mt;
|
||||||
|
}
|
||||||
ix->mt = mix.tab = lj_ir_ktab(J, mt);
|
ix->mt = mix.tab = lj_ir_ktab(J, mt);
|
||||||
goto nocheck;
|
goto nocheck;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user