2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-04-03 12:13:25 +00:00

fix: handle errors in goro and timeout callbacks

This commit is contained in:
TorchedSammy 2022-03-04 22:21:34 -04:00
parent 83ca8066e6
commit 5175367b35
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD

20
api.go
View File

@ -274,11 +274,13 @@ func hlgoro(L *lua.LState) int {
// call fn
go func() {
L.CallByParam(lua.P{
Fn: fn,
NRet: 0,
if err := L.CallByParam(lua.P{
Fn: fn,
NRet: 0,
Protect: true,
}, args...)
}, args...); err != nil {
fmt.Fprintln(os.Stderr, "Error in goro function:\n\n", err)
}
}()
return 0
@ -295,11 +297,13 @@ func hltimeout(L *lua.LState) int {
timeout := time.Duration(ms) * time.Millisecond
time.Sleep(timeout)
L.CallByParam(lua.P{
Fn: cb,
NRet: 0,
if err := L.CallByParam(lua.P{
Fn: cb,
NRet: 0,
Protect: true,
})
}); err != nil {
fmt.Fprintln(os.Stderr, "Error in goro function:\n\n", err)
}
return 0
}