Skip to content

Commit

Permalink
Disable fuzzing Compression::None to see if it's the culprit for non-…
Browse files Browse the repository at this point in the history
…reproducible fuzzer errors
  • Loading branch information
Shnatsel committed Sep 26, 2024
1 parent 1e83f78 commit 6b06728
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuzz/fuzz_targets/roundtrip.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ fn encode_png<'a>(width: u8, filter: u8, compression: u8, color_type: u8, raw_bi
0 => png::Compression::Default,
1 => png::Compression::Fast,
2 => png::Compression::High,
3 => png::Compression::None,
// 3 => png::Compression::None, // TODO: re-enable
_ => return None,
};

Expand Down

0 comments on commit 6b06728

Please sign in to comment.