mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-02 02:59:00 -05:00
11 lines
142 B
Go
11 lines
142 B
Go
// +build gofuzz
|
|
|
|
package semver
|
|
|
|
func Fuzz(data []byte) int {
|
|
if _, err := NewVersion(string(data)); err != nil {
|
|
return 0
|
|
}
|
|
return 1
|
|
}
|