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