mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-02 23:47:07 -05:00
12 lines
162 B
Go
12 lines
162 B
Go
// +build gofuzz
|
|
|
|
package command
|
|
|
|
func Fuzz(data []byte) int {
|
|
cmd := new(SwitchAccount)
|
|
if err := cmd.Unmarshal(data); err != nil {
|
|
return 0
|
|
}
|
|
return 1
|
|
}
|