mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-13 16:36:39 +00:00

Also update golang.org/x/net and google.golang.org/grpc to fix vulnerabilities, although cloudflared is using them in a way that is not exposed to those risks
12 lines
157 B
Go
12 lines
157 B
Go
//go:build gofuzz
|
|
// +build gofuzz
|
|
|
|
package httprule
|
|
|
|
func Fuzz(data []byte) int {
|
|
if _, err := Parse(string(data)); err != nil {
|
|
return 0
|
|
}
|
|
return 0
|
|
}
|