mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-11 16:14:05 -08:00
86ff4a1717
Pinned github.com/googleapis/gnostic as they introduced braking change. Signed-off-by: Bartlomiej Plotka <bwplotka@gmail.com>
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
|
|
}
|