#include #include #include #include "zlib.h" static Bytef buffer[256 * 1024] = { 0 }; // Entry point for LibFuzzer. extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { uLongf buffer_length = static_cast(sizeof(buffer)); uLong buf_size = static_cast(size); // Ignore return code. uncompress2(buffer, &buffer_length, data, &buf_size); return 0; }