Skip to content

Commit e5d13e3

Browse files
committed
fix
1 parent 35eb6f1 commit e5d13e3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

crates/quarto-markdown-pandoc/fuzz/fuzz_targets/hello_fuzz.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ use quarto_markdown_pandoc::readers;
1010

1111
fuzz_target!(|data: &[u8]| {
1212
if let Ok(s) = std::str::from_utf8(data) {
13-
let _ = crate::readers::qmd::read(s.as_bytes(), false, "<input>", &mut std::io::sink());
13+
let _ =
14+
crate::readers::qmd::read(s.as_bytes(), false, "<input>", &mut std::io::sink(), true);
1415
}
1516
});

0 commit comments

Comments
 (0)