Skip to content

Commit

Permalink
Fix typo in fuzz-mdhtml.c, preventing oss-fuzz from working.
Browse files Browse the repository at this point in the history
  • Loading branch information
mity committed Jan 10, 2024
1 parent c6942ef commit 821477b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/fuzzers/fuzz-mdhtml.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
parser_flags = ((unsigned*)data)[0];
renderer_flags = ((unsigned*)data)[1];
data += 2 * sizeof(unsigned);
ize -= 2 * sizeof(unsigned);
size -= 2 * sizeof(unsigned);

md_html(data, size, process_output, NULL, parser_flags, renderer_flags);
return 0;
Expand Down

0 comments on commit 821477b

Please sign in to comment.