Line | Count | Source |
1 | #include "grpc_transcoding/http_template.h" | |
2 | ||
3 | #include <cstddef> | |
4 | #include <cstdint> | |
5 | #include <string> | |
6 | ||
7 | 1.01k | extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { |
8 | 1.01k | std::string path((const char *)data, size); |
9 | 1.01k | google::grpc::transcoding::HttpTemplate::Parse(path); |
10 | 1.01k | return 0; |
11 | 1.01k | } |