summaryrefslogtreecommitdiff
path: root/lcorolib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lcorolib.c')
-rw-r--r--lcorolib.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/lcorolib.c b/lcorolib.c
index 156839e6..4d47ea28 100644
--- a/lcorolib.c
+++ b/lcorolib.c
@@ -75,11 +75,8 @@ static int luaB_auxwrap (lua_State *L) {
int r = auxresume(L, co, lua_gettop(L));
if (r < 0) {
int stat = lua_status(co);
- if (stat != LUA_OK && stat != LUA_YIELD) {
- stat = lua_resetthread(co); /* close variables in case of errors */
- if (stat != LUA_OK) /* error closing variables? */
- lua_xmove(co, L, 1); /* get new error object */
- }
+ if (stat != LUA_OK && stat != LUA_YIELD)
+ lua_resetthread(co); /* close variables in case of errors */
if (lua_type(L, -1) == LUA_TSTRING) { /* error object is a string? */
luaL_where(L, 1); /* add extra info, if available */
lua_insert(L, -2);