fix deadlock when closing the server and the connection at the same time

This commit is contained in:
Marten Seemann 2020-10-29 17:56:14 +07:00
parent b7652887d2
commit 4c25cea9ec
3 changed files with 6 additions and 1 deletions

View file

@ -238,6 +238,10 @@ func (h *packetHandlerMap) SetServer(s unknownPacketHandler) {
func (h *packetHandlerMap) CloseServer() {
h.mutex.Lock()
if h.server == nil {
h.mutex.Unlock()
return
}
h.server = nil
var wg sync.WaitGroup
for _, handler := range h.handlers {