Line | Count | Source |
1 | #include "../src/QueryParser.h" | |
2 | ||
3 | #include <string> | |
4 | ||
5 | 7.50k | extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { |
6 | ||
7 | 7.50k | std::string modifiableInput((char *) data, size); |
8 | ||
9 | 7.50k | uWS::getDecodedQueryValue("", modifiableInput); |
10 | 7.50k | uWS::getDecodedQueryValue("hello", modifiableInput); |
11 | ||
12 | 7.50k | return 0; |
13 | 7.50k | } |