Merge #20882: fuzz: Add missing muhash registration

fa44417fcb fuzz: Add missing muhash registration (MarcoFalke)

Pull request description:

  otherwise it is not possible to run the target

ACKs for top commit:
  laanwj:
    Code review ACK fa44417fcb

Tree-SHA512: b6495b84890a778d3569deddfc5703d1bed95d7d5c1eb0766fd5bd9afe86a3a0ccf4726aa16cba4a5fd182d23bfb7e815f3af4eb635915397c90805585b5699e
This commit is contained in:
MarcoFalke 2021-01-08 14:00:14 +01:00
commit 1e078f17b5
No known key found for this signature in database
GPG key ID: D2EA4850E7528B25

View file

@ -9,7 +9,7 @@
#include <vector>
void test_one_input(const std::vector<uint8_t>& buffer)
FUZZ_TARGET(muhash)
{
FuzzedDataProvider fuzzed_data_provider{buffer.data(), buffer.size()};
std::vector<uint8_t> data = ConsumeRandomLengthByteVector(fuzzed_data_provider);