Skip to content
Snippets Groups Projects
Commit 72e513ec authored by Jeija's avatar Jeija
Browse files

Luacontroller: Put clearing debug hook before throwing error back in

parent 1e77b193
No related branches found
No related tags found
No related merge requests found
......@@ -209,6 +209,7 @@ end
-- the server. Therefore, limit max. length of generated string.
local function safe_string_rep(str, n)
if #str * n > mesecon.setting("luacontroller_string_rep_max", 64000) then
debug.sethook() -- Clear hook
error("string.rep: string length overflow", 2)
end
......@@ -348,6 +349,7 @@ end
local function timeout()
debug.sethook() -- Clear hook
error("Code timed out!", 2)
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment