MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / main

Function main

extern/re2/util/fuzz.cc:12–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size);
11
12int main(int argc, char** argv) {
13 uint8_t data[32];
14 for (int i = 0; i < 32; i++) {
15 for (int j = 0; j < 32; j++) {
16 data[j] = random() & 0xFF;
17 }
18 LLVMFuzzerTestOneInput(data, 32);
19 }
20 return 0;
21}

Callers

nothing calls this directly

Calls 2

randomFunction · 0.85
LLVMFuzzerTestOneInputFunction · 0.85

Tested by

no test coverage detected