mirror of
https://github.com/hashicorp/packer.git
synced 2026-04-27 09:09:52 -04:00
11 lines
137 B
Go
11 lines
137 B
Go
// +build gofuzz
|
|
|
|
package printf
|
|
|
|
func Fuzz(data []byte) int {
|
|
_, err := Parse(string(data))
|
|
if err == nil {
|
|
return 1
|
|
}
|
|
return 0
|
|
}
|