mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-05 14:31:22 +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
|
|
}
|