use the correct return values in Fuzz() functions

This commit is contained in:
Marten Seemann 2020-08-08 15:26:52 +07:00
parent d7c2169c55
commit 720f81ce2a
2 changed files with 3 additions and 3 deletions

View file

@ -75,5 +75,5 @@ func Fuzz(data []byte) int {
if b.Len() > parsedLen {
panic(fmt.Sprintf("Serialized length (%d) is longer than parsed length (%d)", b.Len(), parsedLen))
}
return 0
return 1
}