aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lj_err.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lj_err.c b/src/lj_err.c
index 60d8fe12..fd3545e3 100644
--- a/src/lj_err.c
+++ b/src/lj_err.c
@@ -485,7 +485,6 @@ LJ_NOINLINE void lj_err_mem(lua_State *L)
485{ 485{
486 if (L->status == LUA_ERRERR+1) /* Don't touch the stack during lua_open. */ 486 if (L->status == LUA_ERRERR+1) /* Don't touch the stack during lua_open. */
487 lj_vm_unwind_c(L->cframe, LUA_ERRMEM); 487 lj_vm_unwind_c(L->cframe, LUA_ERRMEM);
488 L->top = L->base;
489 setstrV(L, L->top++, lj_err_str(L, LJ_ERR_ERRMEM)); 488 setstrV(L, L->top++, lj_err_str(L, LJ_ERR_ERRMEM));
490 lj_err_throw(L, LUA_ERRMEM); 489 lj_err_throw(L, LUA_ERRMEM);
491} 490}