mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 12:57:38 +03:00
Fix concurrent access on task returnError
This commit is contained in:
parent
63b82af61f
commit
e727641a98
1 changed files with 7 additions and 5 deletions
|
@ -87,16 +87,18 @@ func (g *Group) RunContextList(contextList []context.Context) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
selectedContext, upstreamErr := common.SelectContext(append([]context.Context{taskCancelContext}, contextList...))
|
selectedContext, upstreamErr := common.SelectContext(append([]context.Context{taskCancelContext}, contextList...))
|
||||||
if selectedContext != 0 {
|
|
||||||
returnError = E.Append(returnError, upstreamErr, func(err error) error {
|
|
||||||
return E.Cause(err, "upstream")
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
if g.cleanup != nil {
|
if g.cleanup != nil {
|
||||||
g.cleanup()
|
g.cleanup()
|
||||||
}
|
}
|
||||||
|
|
||||||
<-taskContext.Done()
|
<-taskContext.Done()
|
||||||
|
|
||||||
|
if selectedContext != 0 {
|
||||||
|
returnError = E.Append(returnError, upstreamErr, func(err error) error {
|
||||||
|
return E.Cause(err, "upstream")
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
return returnError
|
return returnError
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue