Skip to content

Commit 920a8b3

Browse files
authored
try to fix fuzzer (#845)
1 parent 7dc872b commit 920a8b3

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

fuzz/idna.cc

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
1010
FuzzedDataProvider fdp(data, size);
1111
std::string source = fdp.ConsumeRandomLengthString(256);
12-
std::string base_source = fdp.ConsumeRandomLengthString(256);
1312

1413
/**
1514
* ada::idna

fuzz/url_pattern.options

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[libfuzzer]
2+
dict = url.dict
3+
max_len = 512
4+
rss_limit_mb = 3000

0 commit comments

Comments
 (0)