mirror of
https://github.com/pion/stun.git
synced 2025-10-30 02:31:48 +08:00
11 lines
152 B
Go
11 lines
152 B
Go
// +build gofuzz
|
|
|
|
package stun
|
|
|
|
import "testing"
|
|
|
|
func TestMessageType_FuzzerCrash1(t *testing.T) {
|
|
input := []byte("\x9c\xbe\x03")
|
|
FuzzType(input)
|
|
}
|