mirror of
https://git.uploadfilter24.eu/lerentis/terraform-provider-gitea.git
synced 2024-11-05 10:28:12 +00:00
10 lines
142 B
Go
10 lines
142 B
Go
// +build gofuzz
|
|
|
|
package semver
|
|
|
|
func Fuzz(data []byte) int {
|
|
if _, err := NewVersion(string(data)); err != nil {
|
|
return 0
|
|
}
|
|
return 1
|
|
}
|