Home
last modified time | relevance | path

Searched refs:LUA_SIGNATURE (Results 1 – 7 of 7) sorted by relevance

/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dlundump.c200 else if (*name==LUA_SIGNATURE[0]) in luaU_undump()
217 memcpy(h,LUA_SIGNATURE,sizeof(LUA_SIGNATURE)-1); in luaU_header()
218 h+=sizeof(LUA_SIGNATURE)-1; in luaU_header()
H A Dprint.c166 else if (*s==LUA_SIGNATURE[0]) in PrintHeader()
H A Dlauxlib.c573 if (c == LUA_SIGNATURE[0] && filename) { /* binary file? */ in luaL_loadfile()
577 while ((c = getc(lf.f)) != EOF && c != LUA_SIGNATURE[0]) ; in luaL_loadfile()
H A Dlua.h27 #define LUA_SIGNATURE "\033Lua" macro
/f-stack/app/redis-5.0.5/deps/
H A DREADME.md86 3. There is a security fix in `ldo.c`, line 498: The check for `LUA_SIGNATURE[0]` is removed in ord…
/f-stack/freebsd/contrib/openzfs/include/sys/lua/
H A Dlua.h30 #define LUA_SIGNATURE "\033Lua" macro
/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dldo.c720 lua_assert(c != LUA_SIGNATURE[0]); /* binary not supported */ in f_parser()