mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
18 lines
174 B
Go
18 lines
174 B
Go
// +build gofuzz
|
|
|
|
package ini
|
|
|
|
import (
|
|
"bytes"
|
|
)
|
|
|
|
func Fuzz(data []byte) int {
|
|
b := bytes.NewReader(data)
|
|
|
|
if _, err := Parse(b); err != nil {
|
|
return 0
|
|
}
|
|
|
|
return 1
|
|
}
|