mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
3af1e26d7c
Signed-off-by: Humble Chirammal <hchiramm@redhat.com>
12 lines
137 B
Go
12 lines
137 B
Go
// +build gofuzz
|
|
|
|
package printf
|
|
|
|
func Fuzz(data []byte) int {
|
|
_, err := Parse(string(data))
|
|
if err == nil {
|
|
return 1
|
|
}
|
|
return 0
|
|
}
|