mirror of
https://git.uploadfilter24.eu/lerentis/terraform-provider-gitea.git
synced 2024-11-05 10:28:12 +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
|
||
|
}
|