diff options
author | dartraiden <wowemuh@gmail.com> | 2020-12-03 22:11:17 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2020-12-03 22:11:32 +0300 |
commit | f64dfc75a6ffe43c9f425d353be761b32b7e4653 (patch) | |
tree | a8a09f927494681f382a9b0e586d4234c62476db /libs/liblua/src | |
parent | b2a67a796656f20dfae0ecdf7c2870d3ece927b4 (diff) |
liblua: pick up Miranda-specific commits
Diffstat (limited to 'libs/liblua/src')
-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 1c7b8791da..72515da1be 100644 --- a/libs/liblua/src/lstate.c +++ b/libs/liblua/src/lstate.c @@ -403,6 +403,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); |