Skip to content

Commit

Permalink
Updating
Browse files Browse the repository at this point in the history
  • Loading branch information
woody-apple committed Jul 16, 2024
1 parent e7fe642 commit 3880674
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/setup_payload/tests/FuzzBase38Decode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t * data, size_t len)
{
std::string base38EncodedString(reinterpret_cast<const char *>(data), len);
std::vector<uint8_t> decodedData;
CHIP_ERROR err = chip::base38Decode(base38EncodedString, decodedData);

chip::base38Decode(base38EncodedString, decodedData);

return 0;
}

0 comments on commit 3880674

Please sign in to comment.