diff options
-rw-r--r-- | libs/liblua/src/lstate.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libs/liblua/src/lstate.c b/libs/liblua/src/lstate.c index c5e3b437f1..0af817a0d5 100644 --- a/libs/liblua/src/lstate.c +++ b/libs/liblua/src/lstate.c @@ -408,6 +408,9 @@ LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) { LUA_API void lua_close (lua_State *L) { + if (!L) + return; + lua_lock(L); L = G(L)->mainthread; /* only the main thread can be closed */ close_state(L); |