mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-22 01:57:12 -05:00
check input value nil
This commit is contained in:
parent
790d37bf90
commit
f735663364
@ -54,6 +54,9 @@ func (this *SwitchAccount) Marshal(writer io.Writer) {
|
||||
}
|
||||
|
||||
func (this *SwitchAccount) Unmarshal(data []byte) error {
|
||||
if len(data) == 0 {
|
||||
return transport.CorruptedPacket
|
||||
}
|
||||
lenHost := int(data[0])
|
||||
if len(data) < lenHost+1 {
|
||||
return transport.CorruptedPacket
|
||||
|
Loading…
Reference in New Issue
Block a user