We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6c04c8 commit 4138902Copy full SHA for 4138902
gix-config/fuzz/fuzz_targets/fuzz_file.rs
@@ -91,7 +91,8 @@ fn fuzz(input: &[u8]) -> Result<()> {
91
92
let mut buf = Vec::new();
93
let mut sections = Vec::new();
94
- for section in file.sections() {
+ // Don't perform too much work as this can blow up the size of the file.
95
+ for section in file.sections().take(10) {
96
fuzz_immutable_section(section, &mut buf);
97
98
let header = section.header();
0 commit comments