mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
* Move uWebSockets and uSockets forks into Bun's repository * Update Makefile * Update settings.json * Update libuwsockets.cpp * Remove backends we won't be using * Update bindings.cpp --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
13 lines
307 B
C++
13 lines
307 B
C++
#include "../src/QueryParser.h"
|
|
|
|
#include <string>
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
|
|
|
std::string modifiableInput((char *) data, size);
|
|
|
|
uWS::getDecodedQueryValue("", modifiableInput);
|
|
uWS::getDecodedQueryValue("hello", modifiableInput);
|
|
|
|
return 0;
|
|
} |