mirror of
https://github.com/owncloud/ocis
synced 2026-04-25 17:25:21 +02: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
|
|
}
|