| 21 | } |
| 22 | |
| 23 | extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) |
| 24 | { |
| 25 | try |
| 26 | { |
| 27 | Poseidon::DecodePAABuffer(data, size, /*isPaa*/ true); |
| 28 | } |
| 29 | catch (...) |
| 30 | { |
| 31 | } |
| 32 | return 0; |
| 33 | } |
nothing calls this directly
no test coverage detected