mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-11 06:29:29 +01:00
tweak to avoid a potential data race
This commit is contained in:
parent
b468baa959
commit
4b37b5dd3e
@ -327,11 +327,11 @@ func (client *Client) lookupHostname(session *Session, overwrite bool) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
session.rawHostname = hostname
|
session.rawHostname = hostname
|
||||||
|
cloakedHostname := config.Server.Cloaks.ComputeCloak(ip)
|
||||||
|
client.stateMutex.Lock()
|
||||||
|
defer client.stateMutex.Unlock()
|
||||||
// update the hostname if this is a new connection or a resume, but not if it's a reattach
|
// update the hostname if this is a new connection or a resume, but not if it's a reattach
|
||||||
if overwrite || client.rawHostname == "" {
|
if overwrite || client.rawHostname == "" {
|
||||||
cloakedHostname := config.Server.Cloaks.ComputeCloak(ip)
|
|
||||||
client.stateMutex.Lock()
|
|
||||||
defer client.stateMutex.Unlock()
|
|
||||||
client.rawHostname = hostname
|
client.rawHostname = hostname
|
||||||
client.cloakedHostname = cloakedHostname
|
client.cloakedHostname = cloakedHostname
|
||||||
client.updateNickMaskNoMutex()
|
client.updateNickMaskNoMutex()
|
||||||
|
Loading…
Reference in New Issue
Block a user