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 /ldo.h | |
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 'ldo.h')
-rw-r--r-- | ldo.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -60,6 +60,7 @@ | |||
60 | /* type of protected functions, to be ran by 'runprotected' */ | 60 | /* type of protected functions, to be ran by 'runprotected' */ |
61 | typedef void (*Pfunc) (lua_State *L, void *ud); | 61 | typedef void (*Pfunc) (lua_State *L, void *ud); |
62 | 62 | ||
63 | LUAI_FUNC l_noret luaD_errerr (lua_State *L); | ||
63 | LUAI_FUNC void luaD_seterrorobj (lua_State *L, int errcode, StkId oldtop); | 64 | LUAI_FUNC void luaD_seterrorobj (lua_State *L, int errcode, StkId oldtop); |
64 | LUAI_FUNC int luaD_protectedparser (lua_State *L, ZIO *z, const char *name, | 65 | LUAI_FUNC int luaD_protectedparser (lua_State *L, ZIO *z, const char *name, |
65 | const char *mode); | 66 | const char *mode); |