mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-01-04 01:19:46 +01:00
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
|
|
}
|