commit | e0b16355ce13d802b284cd0e421d2c925557e492 | [log] [tgz] |
---|---|---|
author | Aurelien DARRAGON <adarragon@haproxy.com> | Fri Apr 21 17:38:37 2023 +0200 |
committer | Christopher Faulet <cfaulet@haproxy.com> | Fri May 05 16:28:32 2023 +0200 |
tree | 5a9e5b822fb19421fe56a19eed4d84cd7d5202ab | |
parent | 977688bd57bb170cb8baafc2cc95dc578eb56584 [diff] |
CLEANUP: hlua: hlua_register_task() may longjmp Adding __LJMP prefix to hlua_register_task() to indicate that the function may longjmp when executed.
diff --git a/src/hlua.c b/src/hlua.c index b5c9fac..2c68d4f 100644 --- a/src/hlua.c +++ b/src/hlua.c
@@ -8863,7 +8863,7 @@ * * <arg1..4> are optional arguments that will be provided to <function> */ -static int hlua_register_task(lua_State *L) +__LJMP static int hlua_register_task(lua_State *L) { struct hlua *hlua = NULL; struct task *task = NULL;