patch a crash on incomplete supplied UserIP2
This commit is contained in:
parent
f8c0fc54d8
commit
b8122710f5
@ -253,6 +253,11 @@ func (this *HubConnection) processProtocolMessage(message string) {
|
||||
nextIPPair:
|
||||
for _, pair := range pairs {
|
||||
parts := strings.SplitN(pair, " ", 2)
|
||||
if len(parts) != 2 {
|
||||
// ????
|
||||
continue nextIPPair
|
||||
}
|
||||
|
||||
ip2nick := parts[0]
|
||||
ip2addr := parts[1]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user