commit | a6a3aee340dfe7ca7410d8167ff04187e7a1e7b0 | [log] [tgz] |
---|---|---|
author | Matteo Scandolo <matteo.scandolo@gmail.com> | Tue Nov 26 13:30:14 2019 -0700 |
committer | Matteo Scandolo <matteo.scandolo@gmail.com> | Tue Nov 26 13:33:31 2019 -0700 |
tree | 63e11f0199331430b4b0ff78556a692128913fd3 | |
parent | 3de9de0f50908f53454acd5eb82f97794bc937a3 [diff] [blame] |
Committing vendored dependencies and generated protos Change-Id: I349c149b513d9de7d9f60bde2c954a939da2fc54
diff --git a/vendor/github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway/httprule/fuzz.go b/vendor/github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway/httprule/fuzz.go new file mode 100644 index 0000000..138f7c1 --- /dev/null +++ b/vendor/github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway/httprule/fuzz.go
@@ -0,0 +1,11 @@ +// +build gofuzz + +package httprule + +func Fuzz(data []byte) int { + _, err := Parse(string(data)) + if err != nil { + return 0 + } + return 0 +}