mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-05 14:31:22 +00:00
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
|
|
}
|