mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
7d7fbf890e
Updates https://github.com/VictoriaMetrics/VictoriaMetrics/issues/203 Updates https://github.com/VictoriaMetrics/VictoriaMetrics/issues/38
11 lines
137 B
Go
11 lines
137 B
Go
// +build gofuzz
|
|
|
|
package printf
|
|
|
|
func Fuzz(data []byte) int {
|
|
_, err := Parse(string(data))
|
|
if err == nil {
|
|
return 1
|
|
}
|
|
return 0
|
|
}
|