Skip to content

Commit

Permalink
Add an assert for OSS-Fuzz debugging
Browse files Browse the repository at this point in the history
Signed-off-by: Gavin D. Howard <gavin@gavinhoward.com>
  • Loading branch information
gavinhoward committed Jun 18, 2024
1 parent 81ed3e6 commit 5378eaa
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/dc_fuzzer.c
Original file line number Diff line number Diff line change
Expand Up @@ -108,5 +108,7 @@ LLVMFuzzerTestOneInput(const uint8_t* Data, size_t Size)

free(bc_fuzzer_data);

assert(false);

return s == BC_STATUS_SUCCESS || s == BC_STATUS_QUIT ? 0 : -1;
}

0 comments on commit 5378eaa

Please sign in to comment.