Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mesecons
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Illuna-Minetest
mesecons
Commits
72e513ec
Commit
72e513ec
authored
9 years ago
by
Jeija
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
mesecons_luacontroller/init.lua
+2
-0
2 additions, 0 deletions
mesecons_luacontroller/init.lua
with
2 additions
and
0 deletions
mesecons_luacontroller/init.lua
+
2
−
0
View file @
72e513ec
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment