mirror of https://github.com/tidwall/tile38.git
18 lines
238 B
Go
18 lines
238 B
Go
|
// +build gofuzz
|
||
|
|
||
|
package amqp
|
||
|
|
||
|
import "bytes"
|
||
|
|
||
|
func Fuzz(data []byte) int {
|
||
|
r := reader{bytes.NewReader(data)}
|
||
|
frame, err := r.ReadFrame()
|
||
|
if err != nil {
|
||
|
if frame != nil {
|
||
|
panic("frame is not nil")
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
return 1
|
||
|
}
|