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

@ -60,7 +60,7 @@ func Fuzz(data []byte) int {
panic(fmt.Sprintf("inconsistent header length: %#v. Expected %d, got %d", extHdr, expLen, b.Len()))
}
}
return 0
return 1
}
func fuzzVNP(data []byte) int {
@ -81,5 +81,5 @@ func fuzzVNP(data []byte) int {
if _, err := wire.ComposeVersionNegotiation(hdr.SrcConnectionID, hdr.DestConnectionID, versions); err != nil {
panic(err)
}
return 0
return 1
}