1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-12-22 10:08:15 -05:00

fix dead lock

This commit is contained in:
Darien Raymond 2017-04-05 12:56:50 +02:00
parent 947492a71c
commit 0a15bceb55
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -42,7 +42,7 @@ func (s *session) closeUplink() {
allDone = s.uplinkClosed && s.downlinkClosed
s.Unlock()
if allDone {
s.parent.remove(s.id)
go s.parent.remove(s.id)
}
}
@ -53,7 +53,7 @@ func (s *session) closeDownlink() {
allDone = s.uplinkClosed && s.downlinkClosed
s.Unlock()
if allDone {
s.parent.remove(s.id)
go s.parent.remove(s.id)
}
}