11 lines · cpp
1#include <cstdint>2#include <vector>3 4extern "C" int LLVMFuzzerTestOneInput(const std::uint8_t *data, size_t size) {5 std::vector<uint8_t> v;6 // Intentionally throw std::length_error7 v.reserve(static_cast<uint64_t>(-1));8 9 return 0;10}11