From 8b981c349ce9489de8c3866bac909f091bb41f8c Mon Sep 17 00:00:00 2001 From: dartraiden Date: Tue, 10 Jul 2018 17:35:35 +0300 Subject: liblua: pick up Miranda-specific commits --- libs/liblua/src/lstate.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libs/liblua/src') diff --git a/libs/liblua/src/lstate.c b/libs/liblua/src/lstate.c index c1a76643c3..8815afb95f 100644 --- a/libs/liblua/src/lstate.c +++ b/libs/liblua/src/lstate.c @@ -339,6 +339,9 @@ LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) { LUA_API void lua_close (lua_State *L) { + if (!L) + return; + L = G(L)->mainthread; /* only the main thread can be closed */ lua_lock(L); close_state(L); -- cgit v1.2.3