mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-02 15:30:01 +00:00
22 lines
347 B
Go
22 lines
347 B
Go
|
// +build gofuzz
|
||
|
|
||
|
// Use with https://github.com/dvyukov/go-fuzz
|
||
|
|
||
|
package ebpf
|
||
|
|
||
|
import "bytes"
|
||
|
|
||
|
func FuzzLoadCollectionSpec(data []byte) int {
|
||
|
spec, err := LoadCollectionSpecFromReader(bytes.NewReader(data))
|
||
|
if err != nil {
|
||
|
if spec != nil {
|
||
|
panic("spec is not nil")
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
if spec == nil {
|
||
|
panic("spec is nil")
|
||
|
}
|
||
|
return 1
|
||
|
}
|