File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -286,7 +286,8 @@ FUZZ_TARGET(addrman, .init = initialize_addrman)
286
286
(void )const_addr_man.GetAddr (
287
287
/* max_addresses=*/ fuzzed_data_provider.ConsumeIntegralInRange <size_t >(0 , 4096 ),
288
288
/* max_pct=*/ fuzzed_data_provider.ConsumeIntegralInRange <size_t >(0 , 4096 ),
289
- network);
289
+ network,
290
+ /* filtered=*/ fuzzed_data_provider.ConsumeBool ());
290
291
(void )const_addr_man.Select (fuzzed_data_provider.ConsumeBool (), network);
291
292
std::optional<bool > in_new;
292
293
if (fuzzed_data_provider.ConsumeBool ()) {
Original file line number Diff line number Diff line change @@ -88,7 +88,8 @@ FUZZ_TARGET(connman, .init = initialize_connman)
88
88
(void )connman.GetAddresses (
89
89
/* max_addresses=*/ fuzzed_data_provider.ConsumeIntegral <size_t >(),
90
90
/* max_pct=*/ fuzzed_data_provider.ConsumeIntegral <size_t >(),
91
- /* network=*/ std::nullopt);
91
+ /* network=*/ std::nullopt,
92
+ /* filtered=*/ fuzzed_data_provider.ConsumeBool ());
92
93
},
93
94
[&] {
94
95
(void )connman.GetAddresses (
You can’t perform that action at this time.
0 commit comments