mirror of https://github.com/v2ray/v2ray-core
check nil
parent
24e575f2cd
commit
5e9017720e
|
@ -5,5 +5,9 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
func (this *Config) GetPredefinedAddress() v2net.Address {
|
func (this *Config) GetPredefinedAddress() v2net.Address {
|
||||||
return this.Address.AsAddress()
|
addr := this.Address.AsAddress()
|
||||||
|
if addr == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return addr
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue