Fix embedded bytecode loader.

This commit is contained in:
Mike Pall
2020-01-13 14:28:43 +01:00
parent 45a7e5073c
commit 8203399601
3 changed files with 8 additions and 1 deletions

View File

@@ -72,6 +72,7 @@ typedef struct LexState {
BCInsLine *bcstack; /* Stack for bytecode instructions/line numbers. */
MSize sizebcstack; /* Size of bytecode stack. */
uint32_t level; /* Syntactical nesting level. */
int endmark; /* Trust bytecode end marker, even if not at EOF. */
} LexState;
LJ_FUNC int lj_lex_setup(lua_State *L, LexState *ls);