mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-12-02 05:04:59 +01: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
|
|
}
|