Marvin Steadfast
61bd2f41c7
All checks were successful
continuous-integration/drone/push Build is passing
12 lines
139 B
Go
12 lines
139 B
Go
// +build gofuzz
|
|
|
|
package httprule
|
|
|
|
func Fuzz(data []byte) int {
|
|
_, err := Parse(string(data))
|
|
if err != nil {
|
|
return 0
|
|
}
|
|
return 0
|
|
}
|