81a2d171ee
Upgrade the aws golang SDK to 1.42.27 to add the new options for configuring S3 dualstack endpoints. Signed-off-by: Adam Kaplan <adam.kaplan@redhat.com>
18 lines
192 B
Go
18 lines
192 B
Go
//go:build gofuzz
|
|
// +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
|
|
}
|