Browse Source

Merge 1b6b7331f6 into 91708ff8e3

pull/575/merge
AdamKorcz 4 years ago committed by GitHub
parent
commit
61e3957aac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      fuzz.go

9
fuzz.go

@ -0,0 +1,9 @@
package mux
func Fuzz(data []byte) int {
_, err := newRouteRegexp(string(data), regexpTypeHost, routeRegexpOptions{})
if err != nil {
return 0
}
return 1
}
Loading…
Cancel
Save