mirror of
https://github.com/42wim/matterbridge
synced 2024-11-05 12:00:27 +00:00
15 lines
240 B
Go
15 lines
240 B
Go
// +build gofuzz
|
|
|
|
package irc
|
|
|
|
func Fuzz(data []byte) int {
|
|
b := bytes.NewBuffer(data)
|
|
event, err := parseToEvent(b.String())
|
|
if err == nil {
|
|
irc := IRC("go-eventirc", "go-eventirc")
|
|
irc.RunCallbacks(event)
|
|
return 1
|
|
}
|
|
return 0
|
|
}
|