mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
use the correct return values in Fuzz() functions
This commit is contained in:
parent
d7c2169c55
commit
720f81ce2a
2 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
}
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue