diff options
-rw-r--r-- | src/lj_err.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lj_err.c b/src/lj_err.c index 563c7706..283c3d18 100644 --- a/src/lj_err.c +++ b/src/lj_err.c | |||
@@ -777,6 +777,7 @@ LJ_NOINLINE void lj_err_mem(lua_State *L) | |||
777 | { | 777 | { |
778 | if (L->status == LUA_ERRERR+1) /* Don't touch the stack during lua_open. */ | 778 | if (L->status == LUA_ERRERR+1) /* Don't touch the stack during lua_open. */ |
779 | lj_vm_unwind_c(L->cframe, LUA_ERRMEM); | 779 | lj_vm_unwind_c(L->cframe, LUA_ERRMEM); |
780 | if (curr_funcisL(L)) L->top = curr_topL(L); | ||
780 | setstrV(L, L->top++, lj_err_str(L, LJ_ERR_ERRMEM)); | 781 | setstrV(L, L->top++, lj_err_str(L, LJ_ERR_ERRMEM)); |
781 | lj_err_throw(L, LUA_ERRMEM); | 782 | lj_err_throw(L, LUA_ERRMEM); |
782 | } | 783 | } |