aboutsummaryrefslogtreecommitdiff
path: root/lstate.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2025-03-12 16:01:03 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2025-03-12 16:01:03 -0300
commit25da574fcbb68bf507431a6091ab73ac434c9428 (patch)
tree6bb694ed0bcd3fea057e90394514320c360bc03c /lstate.c
parentf5e55be2a0ce64066c1b0554675633b92c91fafb (diff)
downloadlua-25da574fcbb68bf507431a6091ab73ac434c9428.tar.gz
lua-25da574fcbb68bf507431a6091ab73ac434c9428.tar.bz2
lua-25da574fcbb68bf507431a6091ab73ac434c9428.zip
Bug: 'luaD_seterrorobj' should not raise errors
This function can be called unprotected, so it should not raise any kind of errors. (It could raise a memory-allocation error when creating a message).
Diffstat (limited to 'lstate.c')
-rw-r--r--lstate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lstate.c b/lstate.c
index 7fefacba..89c8b6ad 100644
--- a/lstate.c
+++ b/lstate.c
@@ -166,7 +166,7 @@ void luaE_checkcstack (lua_State *L) {
166 if (getCcalls(L) == LUAI_MAXCCALLS) 166 if (getCcalls(L) == LUAI_MAXCCALLS)
167 luaG_runerror(L, "C stack overflow"); 167 luaG_runerror(L, "C stack overflow");
168 else if (getCcalls(L) >= (LUAI_MAXCCALLS / 10 * 11)) 168 else if (getCcalls(L) >= (LUAI_MAXCCALLS / 10 * 11))
169 luaD_throw(L, LUA_ERRERR); /* error while handling stack error */ 169 luaD_errerr(L); /* error while handling stack error */
170} 170}
171 171
172 172