mirror of
https://github.com/cjbassi/gotop.git
synced 2025-05-12 19:29:37 +08:00
18 lines
215 B
Go
18 lines
215 B
Go
![]() |
// +build gofuzz
|
||
|
|
||
|
package plist
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
)
|
||
|
|
||
|
func Fuzz(data []byte) int {
|
||
|
buf := bytes.NewReader(data)
|
||
|
|
||
|
var obj interface{}
|
||
|
if err := NewDecoder(buf).Decode(&obj); err != nil {
|
||
|
return 0
|
||
|
}
|
||
|
return 1
|
||
|
}
|