brintos

brintos / llvm-project-archived public Read only

0
0
Text · 241 B · 35df4a9 Raw
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