mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
23 lines
274 B
Go
23 lines
274 B
Go
|
// +build gofuzz
|
||
|
|
||
|
package fastjson
|
||
|
|
||
|
func Fuzz(data []byte) int {
|
||
|
err := ValidateBytes(data)
|
||
|
if err != nil {
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
v := MustParseBytes(data)
|
||
|
|
||
|
dst := make([]byte, 0)
|
||
|
dst = v.MarshalTo(dst)
|
||
|
|
||
|
err = ValidateBytes(dst)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
|
||
|
return 1
|
||
|
}
|