diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2025-03-12 16:01:03 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2025-03-12 16:01:03 -0300 |
commit | 25da574fcbb68bf507431a6091ab73ac434c9428 (patch) | |
tree | 6bb694ed0bcd3fea057e90394514320c360bc03c /lstate.c | |
parent | f5e55be2a0ce64066c1b0554675633b92c91fafb (diff) | |
download | lua-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 | ||