mirror of https://github.com/docker/cli.git
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
|
||
|
}
|