stun fuzzer: Small fix

Signed-off-by: AdamKorcz <adam@adalogics.com>
This commit is contained in:
AdamKorcz 2021-04-14 10:38:22 +01:00 committed by Brad Fitzpatrick
parent 75b99555f3
commit 2243bb48c2

View File

@ -6,7 +6,7 @@
package stun
func FuzzStunParser(data []byte) int {
_, _, _, _ := ParseResponse(data)
_, _, _, _ = ParseResponse(data)
_, _ = ParseBindingRequest(data)
return 1