Skip to content

Commit

Permalink
fuzz: add missing ECCVerifyHandle to base_encode_decode
Browse files Browse the repository at this point in the history
  • Loading branch information
apoelstra committed Jun 18, 2021
1 parent 0f47e01 commit 906d791
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/test/fuzz/base_encode_decode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@
#include <string>
#include <vector>

FUZZ_TARGET(base_encode_decode)
void initialize_base_encode_decode()
{
static const ECCVerifyHandle verify_handle;
}

FUZZ_TARGET_INIT(base_encode_decode, initialize_base_encode_decode)
{
const std::string random_encoded_string(buffer.begin(), buffer.end());

Expand Down

0 comments on commit 906d791

Please sign in to comment.